diff --git a/grammar.js b/grammar.js
index e173dfd1..3311b300 100644
--- a/grammar.js
+++ b/grammar.js
@@ -480,7 +480,6 @@ module.exports = grammar({
expression: $ => choice(
$.primary_expression,
- $.glimmer_template,
$._jsx_element,
$.assignment_expression,
$.augmented_assignment_expression,
@@ -586,24 +585,6 @@ module.exports = grammar({
']',
),
- glimmer_template: $ => choice(
- seq(
- field('open_tag', $.glimmer_opening_tag),
- field('content', repeat($._glimmer_template_content)),
- field('close_tag', $.glimmer_closing_tag),
- ),
- // empty template has no content
- //
- seq(
- field('open_tag', $.glimmer_opening_tag),
- field('close_tag', $.glimmer_closing_tag),
- ),
- ),
-
- _glimmer_template_content: _ => /.{1,}/,
- glimmer_opening_tag: _ => '',
- glimmer_closing_tag: _ => '',
-
_jsx_element: $ => choice($.jsx_element, $.jsx_self_closing_element),
jsx_element: $ => seq(
@@ -1086,17 +1067,15 @@ module.exports = grammar({
),
identifier: _ => {
- // eslint-disable-next-line max-len
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]+\}/;
- // eslint-disable-next-line max-len
+
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: _ => {
- // eslint-disable-next-line max-len
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]+\}/;
- // eslint-disable-next-line max-len
+
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)));
},
@@ -1152,7 +1131,6 @@ module.exports = grammar({
seq(field('member', $.method_definition), optional(';')),
seq(field('member', $.field_definition), $._semicolon),
field('member', $.class_static_block),
- field('template', $.glimmer_template),
';',
)),
'}',
@@ -1253,8 +1231,7 @@ module.exports = grammar({
*
* @param {Rule} rule
*
- * @return {SeqRule}
- *
+ * @returns {SeqRule}
*/
function commaSep1(rule) {
return seq(rule, repeat(seq(',', rule)));
@@ -1265,8 +1242,7 @@ function commaSep1(rule) {
*
* @param {Rule} rule
*
- * @return {ChoiceRule}
- *
+ * @returns {ChoiceRule}
*/
function commaSep(rule) {
return optional(commaSep1(rule));
diff --git a/queries/highlights.scm b/queries/highlights.scm
index e5a972c6..9312d682 100644
--- a/queries/highlights.scm
+++ b/queries/highlights.scm
@@ -47,8 +47,6 @@
; Special identifiers
;--------------------
-(glimmer_opening_tag) @tag.builtin
-(glimmer_closing_tag) @tag.builtin
((identifier) @constructor
(#match? @constructor "^[A-Z]"))
diff --git a/queries/injections.scm b/queries/injections.scm
index c93311c0..eb4c8363 100644
--- a/queries/injections.scm
+++ b/queries/injections.scm
@@ -29,7 +29,3 @@
(#eq? @_name "hbs"))
arguments: ((template_string) @glimmer
(#offset! @glimmer 0 1 0 -1)))
-
-; Ember Unified syntax
-; e.g.:
-((glimmer_template) @glimmer)
diff --git a/src/grammar.json b/src/grammar.json
index ca555392..a662e58f 100644
--- a/src/grammar.json
+++ b/src/grammar.json
@@ -1721,10 +1721,6 @@
"type": "SYMBOL",
"name": "primary_expression"
},
- {
- "type": "SYMBOL",
- "name": "glimmer_template"
- },
{
"type": "SYMBOL",
"name": "_jsx_element"
@@ -2397,76 +2393,6 @@
}
]
},
- "glimmer_template": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "open_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_opening_tag"
- }
- },
- {
- "type": "FIELD",
- "name": "content",
- "content": {
- "type": "REPEAT",
- "content": {
- "type": "SYMBOL",
- "name": "_glimmer_template_content"
- }
- }
- },
- {
- "type": "FIELD",
- "name": "close_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_closing_tag"
- }
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "open_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_opening_tag"
- }
- },
- {
- "type": "FIELD",
- "name": "close_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_closing_tag"
- }
- }
- ]
- }
- ]
- },
- "_glimmer_template_content": {
- "type": "PATTERN",
- "value": ".{1,}"
- },
- "glimmer_opening_tag": {
- "type": "STRING",
- "value": ""
- },
- "glimmer_closing_tag": {
- "type": "STRING",
- "value": ""
- },
"_jsx_element": {
"type": "CHOICE",
"members": [
@@ -6216,14 +6142,6 @@
"name": "class_static_block"
}
},
- {
- "type": "FIELD",
- "name": "template",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_template"
- }
- },
{
"type": "STRING",
"value": ";"
diff --git a/src/node-types.json b/src/node-types.json
index 67c04d1b..7f751b3e 100644
--- a/src/node-types.json
+++ b/src/node-types.json
@@ -45,10 +45,6 @@
"type": "binary_expression",
"named": true
},
- {
- "type": "glimmer_template",
- "named": true
- },
{
"type": "jsx_element",
"named": true
@@ -886,16 +882,6 @@
"named": true
}
]
- },
- "template": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "glimmer_template",
- "named": true
- }
- ]
}
}
},
@@ -1624,32 +1610,6 @@
}
}
},
- {
- "type": "glimmer_template",
- "named": true,
- "fields": {
- "close_tag": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "glimmer_closing_tag",
- "named": true
- }
- ]
- },
- "open_tag": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "glimmer_opening_tag",
- "named": true
- }
- ]
- }
- }
- },
{
"type": "if_statement",
"named": true,
@@ -3403,14 +3363,6 @@
"type": "get",
"named": false
},
- {
- "type": "glimmer_closing_tag",
- "named": true
- },
- {
- "type": "glimmer_opening_tag",
- "named": true
- },
{
"type": "hash_bang_line",
"named": true
diff --git a/src/parser.c b/src/parser.c
index cc4c66d6..fe2d3a63 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -4,24 +4,16 @@
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
-#ifdef _MSC_VER
-#pragma optimize("", off)
-#elif defined(__clang__)
-#pragma clang optimize off
-#elif defined(__GNUC__)
-#pragma GCC optimize ("O0")
-#endif
-
#define LANGUAGE_VERSION 14
-#define STATE_COUNT 1746
-#define LARGE_STATE_COUNT 330
-#define SYMBOL_COUNT 264
+#define STATE_COUNT 1722
+#define LARGE_STATE_COUNT 326
+#define SYMBOL_COUNT 259
#define ALIAS_COUNT 4
-#define TOKEN_COUNT 136
+#define TOKEN_COUNT 133
#define EXTERNAL_TOKEN_COUNT 8
-#define FIELD_COUNT 38
+#define FIELD_COUNT 36
#define MAX_ALIAS_SEQUENCE_LENGTH 9
-#define PRODUCTION_ID_COUNT 113
+#define PRODUCTION_ID_COUNT 111
enum ts_symbol_identifiers {
sym_identifier = 1,
@@ -65,232 +57,227 @@ enum ts_symbol_identifiers {
anon_sym_EQ = 39,
anon_sym_LBRACK = 40,
anon_sym_RBRACK = 41,
- sym__glimmer_template_content = 42,
- sym_glimmer_opening_tag = 43,
- sym_glimmer_closing_tag = 44,
- sym_html_character_reference = 45,
- anon_sym_LT = 46,
- anon_sym_GT = 47,
- sym_jsx_identifier = 48,
- anon_sym_DOT = 49,
- anon_sym_LT_SLASH = 50,
- anon_sym_SLASH_GT = 51,
- anon_sym_DQUOTE = 52,
- anon_sym_SQUOTE = 53,
- sym_unescaped_double_jsx_string_fragment = 54,
- sym_unescaped_single_jsx_string_fragment = 55,
- anon_sym_class = 56,
- anon_sym_extends = 57,
- anon_sym_async = 58,
- anon_sym_function = 59,
- anon_sym_EQ_GT = 60,
- sym_optional_chain = 61,
- anon_sym_new = 62,
- anon_sym_PLUS_EQ = 63,
- anon_sym_DASH_EQ = 64,
- anon_sym_STAR_EQ = 65,
- anon_sym_SLASH_EQ = 66,
- anon_sym_PERCENT_EQ = 67,
- anon_sym_CARET_EQ = 68,
- anon_sym_AMP_EQ = 69,
- anon_sym_PIPE_EQ = 70,
- anon_sym_GT_GT_EQ = 71,
- anon_sym_GT_GT_GT_EQ = 72,
- anon_sym_LT_LT_EQ = 73,
- anon_sym_STAR_STAR_EQ = 74,
- anon_sym_AMP_AMP_EQ = 75,
- anon_sym_PIPE_PIPE_EQ = 76,
- anon_sym_QMARK_QMARK_EQ = 77,
- anon_sym_DOT_DOT_DOT = 78,
- anon_sym_AMP_AMP = 79,
- anon_sym_PIPE_PIPE = 80,
- anon_sym_GT_GT = 81,
- anon_sym_GT_GT_GT = 82,
- anon_sym_LT_LT = 83,
- anon_sym_AMP = 84,
- anon_sym_CARET = 85,
- anon_sym_PIPE = 86,
- anon_sym_PLUS = 87,
- anon_sym_DASH = 88,
- anon_sym_SLASH = 89,
- anon_sym_PERCENT = 90,
- anon_sym_STAR_STAR = 91,
- anon_sym_LT_EQ = 92,
- anon_sym_EQ_EQ = 93,
- anon_sym_EQ_EQ_EQ = 94,
- anon_sym_BANG_EQ = 95,
- anon_sym_BANG_EQ_EQ = 96,
- anon_sym_GT_EQ = 97,
- anon_sym_QMARK_QMARK = 98,
- anon_sym_instanceof = 99,
- anon_sym_BANG = 100,
- anon_sym_TILDE = 101,
- anon_sym_typeof = 102,
- anon_sym_void = 103,
- anon_sym_delete = 104,
- anon_sym_PLUS_PLUS = 105,
- anon_sym_DASH_DASH = 106,
- sym_unescaped_double_string_fragment = 107,
- sym_unescaped_single_string_fragment = 108,
- sym_escape_sequence = 109,
- sym_comment = 110,
- anon_sym_BQUOTE = 111,
- anon_sym_DOLLAR_LBRACE = 112,
- anon_sym_SLASH2 = 113,
- sym_regex_pattern = 114,
- sym_regex_flags = 115,
- sym_number = 116,
- sym_private_property_identifier = 117,
- anon_sym_target = 118,
- anon_sym_meta = 119,
- sym_this = 120,
- sym_super = 121,
- sym_true = 122,
- sym_false = 123,
- sym_null = 124,
- sym_undefined = 125,
- anon_sym_AT = 126,
- anon_sym_static = 127,
- aux_sym_method_definition_token1 = 128,
- anon_sym_get = 129,
- anon_sym_set = 130,
- sym__automatic_semicolon = 131,
- sym__template_chars = 132,
- sym__ternary_qmark = 133,
- sym_html_comment = 134,
- sym_jsx_text = 135,
- sym_program = 136,
- sym_export_statement = 137,
- sym_namespace_export = 138,
- sym_export_clause = 139,
- sym_export_specifier = 140,
- sym__module_export_name = 141,
- sym_declaration = 142,
- sym_import = 143,
- sym_import_statement = 144,
- sym_import_clause = 145,
- sym__from_clause = 146,
- sym_namespace_import = 147,
- sym_named_imports = 148,
- sym_import_specifier = 149,
- sym_import_attribute = 150,
- sym_statement = 151,
- sym_expression_statement = 152,
- sym_variable_declaration = 153,
- sym_lexical_declaration = 154,
- sym_variable_declarator = 155,
- sym_statement_block = 156,
- sym_else_clause = 157,
- sym_if_statement = 158,
- sym_switch_statement = 159,
- sym_for_statement = 160,
- sym_for_in_statement = 161,
- sym__for_header = 162,
- sym_while_statement = 163,
- sym_do_statement = 164,
- sym_try_statement = 165,
- sym_with_statement = 166,
- sym_break_statement = 167,
- sym_continue_statement = 168,
- sym_debugger_statement = 169,
- sym_return_statement = 170,
- sym_throw_statement = 171,
- sym_empty_statement = 172,
- sym_labeled_statement = 173,
- sym_switch_body = 174,
- sym_switch_case = 175,
- sym_switch_default = 176,
- sym_catch_clause = 177,
- sym_finally_clause = 178,
- sym_parenthesized_expression = 179,
- sym_expression = 180,
- sym_primary_expression = 181,
- sym_yield_expression = 182,
- sym_object = 183,
- sym_object_pattern = 184,
- sym_assignment_pattern = 185,
- sym_object_assignment_pattern = 186,
- sym_array = 187,
- sym_array_pattern = 188,
- sym_glimmer_template = 189,
- sym_jsx_element = 190,
- sym_jsx_expression = 191,
- sym_jsx_opening_element = 192,
- sym_nested_identifier = 193,
- sym_jsx_namespace_name = 194,
- sym_jsx_closing_element = 195,
- sym_jsx_self_closing_element = 196,
- sym_jsx_attribute = 197,
- sym__jsx_string = 198,
- sym_class = 199,
- sym_class_declaration = 200,
- sym_class_heritage = 201,
- sym_function_expression = 202,
- sym_function_declaration = 203,
- sym_generator_function = 204,
- sym_generator_function_declaration = 205,
- sym_arrow_function = 206,
- sym_call_expression = 207,
- sym_new_expression = 208,
- sym_await_expression = 209,
- sym_member_expression = 210,
- sym_subscript_expression = 211,
- sym_assignment_expression = 212,
- sym__augmented_assignment_lhs = 213,
- sym_augmented_assignment_expression = 214,
- sym__initializer = 215,
- sym__destructuring_pattern = 216,
- sym_spread_element = 217,
- sym_ternary_expression = 218,
- sym_binary_expression = 219,
- sym_unary_expression = 220,
- sym_update_expression = 221,
- sym_sequence_expression = 222,
- sym_string = 223,
- sym_template_string = 224,
- sym_template_substitution = 225,
- sym_regex = 226,
- sym_meta_property = 227,
- sym_arguments = 228,
- sym_decorator = 229,
- sym_decorator_member_expression = 230,
- sym_decorator_call_expression = 231,
- sym_class_body = 232,
- sym_field_definition = 233,
- sym_formal_parameters = 234,
- sym_class_static_block = 235,
- sym_pattern = 236,
- sym_rest_pattern = 237,
- sym_method_definition = 238,
- sym_pair = 239,
- sym_pair_pattern = 240,
- sym__property_name = 241,
- sym_computed_property_name = 242,
- aux_sym_program_repeat1 = 243,
- aux_sym_export_statement_repeat1 = 244,
- aux_sym_export_clause_repeat1 = 245,
- aux_sym_named_imports_repeat1 = 246,
- aux_sym_variable_declaration_repeat1 = 247,
- aux_sym_switch_body_repeat1 = 248,
- aux_sym_object_repeat1 = 249,
- aux_sym_object_pattern_repeat1 = 250,
- aux_sym_array_repeat1 = 251,
- aux_sym_array_pattern_repeat1 = 252,
- aux_sym_glimmer_template_repeat1 = 253,
- aux_sym_jsx_element_repeat1 = 254,
- aux_sym_jsx_opening_element_repeat1 = 255,
- aux_sym__jsx_string_repeat1 = 256,
- aux_sym__jsx_string_repeat2 = 257,
- aux_sym_sequence_expression_repeat1 = 258,
- aux_sym_string_repeat1 = 259,
- aux_sym_string_repeat2 = 260,
- aux_sym_template_string_repeat1 = 261,
- aux_sym_class_body_repeat1 = 262,
- aux_sym_formal_parameters_repeat1 = 263,
- alias_sym_property_identifier = 264,
- alias_sym_shorthand_property_identifier = 265,
- alias_sym_shorthand_property_identifier_pattern = 266,
- alias_sym_statement_identifier = 267,
+ sym_html_character_reference = 42,
+ anon_sym_LT = 43,
+ anon_sym_GT = 44,
+ sym_jsx_identifier = 45,
+ anon_sym_DOT = 46,
+ anon_sym_LT_SLASH = 47,
+ anon_sym_SLASH_GT = 48,
+ anon_sym_DQUOTE = 49,
+ anon_sym_SQUOTE = 50,
+ sym_unescaped_double_jsx_string_fragment = 51,
+ sym_unescaped_single_jsx_string_fragment = 52,
+ anon_sym_class = 53,
+ anon_sym_extends = 54,
+ anon_sym_async = 55,
+ anon_sym_function = 56,
+ anon_sym_EQ_GT = 57,
+ sym_optional_chain = 58,
+ anon_sym_new = 59,
+ anon_sym_PLUS_EQ = 60,
+ anon_sym_DASH_EQ = 61,
+ anon_sym_STAR_EQ = 62,
+ anon_sym_SLASH_EQ = 63,
+ anon_sym_PERCENT_EQ = 64,
+ anon_sym_CARET_EQ = 65,
+ anon_sym_AMP_EQ = 66,
+ anon_sym_PIPE_EQ = 67,
+ anon_sym_GT_GT_EQ = 68,
+ anon_sym_GT_GT_GT_EQ = 69,
+ anon_sym_LT_LT_EQ = 70,
+ anon_sym_STAR_STAR_EQ = 71,
+ anon_sym_AMP_AMP_EQ = 72,
+ anon_sym_PIPE_PIPE_EQ = 73,
+ anon_sym_QMARK_QMARK_EQ = 74,
+ anon_sym_DOT_DOT_DOT = 75,
+ anon_sym_AMP_AMP = 76,
+ anon_sym_PIPE_PIPE = 77,
+ anon_sym_GT_GT = 78,
+ anon_sym_GT_GT_GT = 79,
+ anon_sym_LT_LT = 80,
+ anon_sym_AMP = 81,
+ anon_sym_CARET = 82,
+ anon_sym_PIPE = 83,
+ anon_sym_PLUS = 84,
+ anon_sym_DASH = 85,
+ anon_sym_SLASH = 86,
+ anon_sym_PERCENT = 87,
+ anon_sym_STAR_STAR = 88,
+ anon_sym_LT_EQ = 89,
+ anon_sym_EQ_EQ = 90,
+ anon_sym_EQ_EQ_EQ = 91,
+ anon_sym_BANG_EQ = 92,
+ anon_sym_BANG_EQ_EQ = 93,
+ anon_sym_GT_EQ = 94,
+ anon_sym_QMARK_QMARK = 95,
+ anon_sym_instanceof = 96,
+ anon_sym_BANG = 97,
+ anon_sym_TILDE = 98,
+ anon_sym_typeof = 99,
+ anon_sym_void = 100,
+ anon_sym_delete = 101,
+ anon_sym_PLUS_PLUS = 102,
+ anon_sym_DASH_DASH = 103,
+ sym_unescaped_double_string_fragment = 104,
+ sym_unescaped_single_string_fragment = 105,
+ sym_escape_sequence = 106,
+ sym_comment = 107,
+ anon_sym_BQUOTE = 108,
+ anon_sym_DOLLAR_LBRACE = 109,
+ anon_sym_SLASH2 = 110,
+ sym_regex_pattern = 111,
+ sym_regex_flags = 112,
+ sym_number = 113,
+ sym_private_property_identifier = 114,
+ anon_sym_target = 115,
+ anon_sym_meta = 116,
+ sym_this = 117,
+ sym_super = 118,
+ sym_true = 119,
+ sym_false = 120,
+ sym_null = 121,
+ sym_undefined = 122,
+ anon_sym_AT = 123,
+ anon_sym_static = 124,
+ aux_sym_method_definition_token1 = 125,
+ anon_sym_get = 126,
+ anon_sym_set = 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_property_identifier = 259,
+ alias_sym_shorthand_property_identifier = 260,
+ alias_sym_shorthand_property_identifier_pattern = 261,
+ alias_sym_statement_identifier = 262,
};
static const char * const ts_symbol_names[] = {
@@ -336,9 +323,6 @@ static const char * const ts_symbol_names[] = {
[anon_sym_EQ] = "=",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
- [sym__glimmer_template_content] = "_glimmer_template_content",
- [sym_glimmer_opening_tag] = "glimmer_opening_tag",
- [sym_glimmer_closing_tag] = "glimmer_closing_tag",
[sym_html_character_reference] = "html_character_reference",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
@@ -483,7 +467,6 @@ static const char * const ts_symbol_names[] = {
[sym_object_assignment_pattern] = "object_assignment_pattern",
[sym_array] = "array",
[sym_array_pattern] = "array_pattern",
- [sym_glimmer_template] = "glimmer_template",
[sym_jsx_element] = "jsx_element",
[sym_jsx_expression] = "jsx_expression",
[sym_jsx_opening_element] = "jsx_opening_element",
@@ -547,7 +530,6 @@ static const char * const ts_symbol_names[] = {
[aux_sym_object_pattern_repeat1] = "object_pattern_repeat1",
[aux_sym_array_repeat1] = "array_repeat1",
[aux_sym_array_pattern_repeat1] = "array_pattern_repeat1",
- [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1",
[aux_sym_jsx_element_repeat1] = "jsx_element_repeat1",
[aux_sym_jsx_opening_element_repeat1] = "jsx_opening_element_repeat1",
[aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1",
@@ -607,9 +589,6 @@ static const TSSymbol ts_symbol_map[] = {
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_RBRACK] = anon_sym_RBRACK,
- [sym__glimmer_template_content] = sym__glimmer_template_content,
- [sym_glimmer_opening_tag] = sym_glimmer_opening_tag,
- [sym_glimmer_closing_tag] = sym_glimmer_closing_tag,
[sym_html_character_reference] = sym_html_character_reference,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
@@ -754,7 +733,6 @@ static const TSSymbol ts_symbol_map[] = {
[sym_object_assignment_pattern] = sym_object_assignment_pattern,
[sym_array] = sym_array,
[sym_array_pattern] = sym_array_pattern,
- [sym_glimmer_template] = sym_glimmer_template,
[sym_jsx_element] = sym_jsx_element,
[sym_jsx_expression] = sym_jsx_expression,
[sym_jsx_opening_element] = sym_jsx_opening_element,
@@ -818,7 +796,6 @@ static const TSSymbol ts_symbol_map[] = {
[aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1,
[aux_sym_array_repeat1] = aux_sym_array_repeat1,
[aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1,
- [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1,
[aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1,
[aux_sym_jsx_opening_element_repeat1] = aux_sym_jsx_opening_element_repeat1,
[aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1,
@@ -1004,18 +981,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = {
.visible = true,
.named = false,
},
- [sym__glimmer_template_content] = {
- .visible = false,
- .named = true,
- },
- [sym_glimmer_opening_tag] = {
- .visible = true,
- .named = true,
- },
- [sym_glimmer_closing_tag] = {
- .visible = true,
- .named = true,
- },
[sym_html_character_reference] = {
.visible = true,
.named = true,
@@ -1596,10 +1561,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = {
.visible = true,
.named = true,
},
- [sym_glimmer_template] = {
- .visible = true,
- .named = true,
- },
[sym_jsx_element] = {
.visible = true,
.named = true,
@@ -1853,10 +1814,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = {
.visible = false,
.named = false,
},
- [aux_sym_glimmer_template_repeat1] = {
- .visible = false,
- .named = false,
- },
[aux_sym_jsx_element_repeat1] = {
.visible = false,
.named = false,
@@ -1926,34 +1883,32 @@ enum ts_field_identifiers {
field_condition = 8,
field_consequence = 9,
field_constructor = 10,
- field_content = 11,
- field_declaration = 12,
- field_decorator = 13,
- field_finalizer = 14,
- field_flags = 15,
- field_function = 16,
- field_handler = 17,
- field_increment = 18,
- field_index = 19,
- field_initializer = 20,
- field_key = 21,
- field_kind = 22,
- field_label = 23,
- field_left = 24,
- field_member = 25,
- field_name = 26,
- field_object = 27,
- field_open_tag = 28,
- field_operator = 29,
- field_optional_chain = 30,
- field_parameter = 31,
- field_parameters = 32,
- field_pattern = 33,
- field_property = 34,
- field_right = 35,
- field_source = 36,
- field_template = 37,
- field_value = 38,
+ field_declaration = 11,
+ field_decorator = 12,
+ field_finalizer = 13,
+ field_flags = 14,
+ field_function = 15,
+ field_handler = 16,
+ field_increment = 17,
+ field_index = 18,
+ field_initializer = 19,
+ field_key = 20,
+ field_kind = 21,
+ field_label = 22,
+ field_left = 23,
+ field_member = 24,
+ field_name = 25,
+ field_object = 26,
+ field_open_tag = 27,
+ field_operator = 28,
+ 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[] = {
@@ -1968,7 +1923,6 @@ static const char * const ts_field_names[] = {
[field_condition] = "condition",
[field_consequence] = "consequence",
[field_constructor] = "constructor",
- [field_content] = "content",
[field_declaration] = "declaration",
[field_decorator] = "decorator",
[field_finalizer] = "finalizer",
@@ -1994,7 +1948,6 @@ static const char * const ts_field_names[] = {
[field_property] = "property",
[field_right] = "right",
[field_source] = "source",
- [field_template] = "template",
[field_value] = "value",
};
@@ -2003,8 +1956,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[3] = {.index = 1, .length = 1},
[5] = {.index = 2, .length = 1},
[6] = {.index = 3, .length = 1},
- [7] = {.index = 4, .length = 2},
- [8] = {.index = 6, .length = 1},
+ [7] = {.index = 4, .length = 1},
+ [8] = {.index = 5, .length = 2},
[9] = {.index = 7, .length = 2},
[10] = {.index = 9, .length = 2},
[11] = {.index = 11, .length = 2},
@@ -2024,88 +1977,86 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[28] = {.index = 40, .length = 2},
[29] = {.index = 42, .length = 2},
[30] = {.index = 44, .length = 1},
- [31] = {.index = 45, .length = 3},
- [32] = {.index = 48, .length = 1},
- [33] = {.index = 49, .length = 1},
- [34] = {.index = 50, .length = 1},
- [35] = {.index = 51, .length = 1},
- [36] = {.index = 52, .length = 1},
- [37] = {.index = 53, .length = 2},
- [38] = {.index = 55, .length = 1},
- [39] = {.index = 56, .length = 2},
- [40] = {.index = 58, .length = 2},
- [41] = {.index = 60, .length = 1},
- [42] = {.index = 18, .length = 2},
- [43] = {.index = 20, .length = 2},
- [44] = {.index = 61, .length = 3},
- [45] = {.index = 64, .length = 2},
- [46] = {.index = 64, .length = 2},
- [47] = {.index = 66, .length = 3},
- [48] = {.index = 66, .length = 3},
- [49] = {.index = 69, .length = 3},
+ [31] = {.index = 45, .length = 1},
+ [32] = {.index = 46, .length = 1},
+ [33] = {.index = 47, .length = 1},
+ [34] = {.index = 48, .length = 1},
+ [35] = {.index = 49, .length = 2},
+ [36] = {.index = 51, .length = 1},
+ [37] = {.index = 52, .length = 2},
+ [38] = {.index = 54, .length = 2},
+ [39] = {.index = 56, .length = 1},
+ [40] = {.index = 18, .length = 2},
+ [41] = {.index = 20, .length = 2},
+ [42] = {.index = 57, .length = 3},
+ [43] = {.index = 60, .length = 2},
+ [44] = {.index = 60, .length = 2},
+ [45] = {.index = 62, .length = 3},
+ [46] = {.index = 62, .length = 3},
+ [47] = {.index = 65, .length = 3},
+ [48] = {.index = 68, .length = 2},
+ [49] = {.index = 70, .length = 2},
[50] = {.index = 72, .length = 2},
[51] = {.index = 74, .length = 2},
- [52] = {.index = 76, .length = 2},
- [53] = {.index = 78, .length = 2},
- [54] = {.index = 80, .length = 1},
- [55] = {.index = 81, .length = 1},
- [56] = {.index = 18, .length = 2},
- [57] = {.index = 82, .length = 2},
+ [52] = {.index = 76, .length = 1},
+ [53] = {.index = 77, .length = 1},
+ [54] = {.index = 18, .length = 2},
+ [55] = {.index = 78, .length = 2},
+ [56] = {.index = 80, .length = 3},
+ [57] = {.index = 83, .length = 1},
[58] = {.index = 84, .length = 3},
- [59] = {.index = 87, .length = 1},
- [60] = {.index = 88, .length = 3},
- [61] = {.index = 91, .length = 6},
- [62] = {.index = 97, .length = 2},
- [63] = {.index = 99, .length = 3},
- [64] = {.index = 102, .length = 2},
- [65] = {.index = 104, .length = 2},
- [66] = {.index = 106, .length = 1},
- [67] = {.index = 107, .length = 2},
- [68] = {.index = 109, .length = 2},
- [69] = {.index = 111, .length = 2},
- [70] = {.index = 113, .length = 4},
- [71] = {.index = 117, .length = 2},
- [72] = {.index = 119, .length = 2},
- [73] = {.index = 121, .length = 2},
- [74] = {.index = 119, .length = 2},
- [75] = {.index = 123, .length = 2},
- [76] = {.index = 125, .length = 3},
- [77] = {.index = 128, .length = 2},
- [78] = {.index = 130, .length = 2},
- [79] = {.index = 132, .length = 2},
- [80] = {.index = 134, .length = 3},
- [81] = {.index = 137, .length = 2},
- [82] = {.index = 139, .length = 2},
- [83] = {.index = 141, .length = 4},
- [84] = {.index = 145, .length = 2},
- [85] = {.index = 147, .length = 2},
- [86] = {.index = 149, .length = 3},
- [87] = {.index = 152, .length = 2},
- [88] = {.index = 154, .length = 3},
- [89] = {.index = 157, .length = 3},
- [90] = {.index = 160, .length = 3},
- [91] = {.index = 163, .length = 2},
+ [59] = {.index = 87, .length = 6},
+ [60] = {.index = 93, .length = 2},
+ [61] = {.index = 95, .length = 3},
+ [62] = {.index = 98, .length = 2},
+ [63] = {.index = 100, .length = 2},
+ [64] = {.index = 102, .length = 1},
+ [65] = {.index = 103, .length = 2},
+ [66] = {.index = 105, .length = 2},
+ [67] = {.index = 107, .length = 1},
+ [68] = {.index = 108, .length = 2},
+ [69] = {.index = 110, .length = 2},
+ [70] = {.index = 112, .length = 2},
+ [71] = {.index = 114, .length = 2},
+ [72] = {.index = 112, .length = 2},
+ [73] = {.index = 116, .length = 2},
+ [74] = {.index = 118, .length = 3},
+ [75] = {.index = 121, .length = 2},
+ [76] = {.index = 123, .length = 2},
+ [77] = {.index = 125, .length = 2},
+ [78] = {.index = 127, .length = 3},
+ [79] = {.index = 130, .length = 2},
+ [80] = {.index = 132, .length = 2},
+ [81] = {.index = 134, .length = 4},
+ [82] = {.index = 138, .length = 2},
+ [83] = {.index = 140, .length = 2},
+ [84] = {.index = 142, .length = 3},
+ [85] = {.index = 145, .length = 2},
+ [86] = {.index = 147, .length = 3},
+ [87] = {.index = 150, .length = 3},
+ [88] = {.index = 153, .length = 3},
+ [89] = {.index = 156, .length = 2},
+ [90] = {.index = 158, .length = 3},
+ [91] = {.index = 161, .length = 4},
[92] = {.index = 165, .length = 3},
- [93] = {.index = 168, .length = 4},
- [94] = {.index = 172, .length = 3},
- [95] = {.index = 172, .length = 3},
- [96] = {.index = 175, .length = 3},
- [97] = {.index = 178, .length = 3},
- [98] = {.index = 181, .length = 3},
- [99] = {.index = 184, .length = 4},
- [100] = {.index = 188, .length = 2},
- [101] = {.index = 190, .length = 4},
- [102] = {.index = 194, .length = 4},
- [103] = {.index = 198, .length = 4},
- [104] = {.index = 202, .length = 3},
- [105] = {.index = 205, .length = 2},
- [106] = {.index = 207, .length = 4},
- [107] = {.index = 211, .length = 5},
- [108] = {.index = 216, .length = 4},
- [109] = {.index = 220, .length = 5},
- [110] = {.index = 225, .length = 4},
- [111] = {.index = 229, .length = 4},
- [112] = {.index = 233, .length = 5},
+ [93] = {.index = 165, .length = 3},
+ [94] = {.index = 168, .length = 3},
+ [95] = {.index = 171, .length = 3},
+ [96] = {.index = 174, .length = 3},
+ [97] = {.index = 177, .length = 4},
+ [98] = {.index = 181, .length = 2},
+ [99] = {.index = 183, .length = 4},
+ [100] = {.index = 187, .length = 4},
+ [101] = {.index = 191, .length = 4},
+ [102] = {.index = 195, .length = 3},
+ [103] = {.index = 198, .length = 2},
+ [104] = {.index = 200, .length = 4},
+ [105] = {.index = 204, .length = 5},
+ [106] = {.index = 209, .length = 4},
+ [107] = {.index = 213, .length = 5},
+ [108] = {.index = 218, .length = 4},
+ [109] = {.index = 222, .length = 4},
+ [110] = {.index = 226, .length = 5},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
@@ -2118,19 +2069,19 @@ static const TSFieldMapEntry ts_field_map_entries[] = {
[3] =
{field_body, 1},
[4] =
- {field_close_tag, 1},
- {field_open_tag, 0},
- [6] =
{field_constructor, 1},
- [7] =
+ [5] =
{field_argument, 1},
{field_operator, 0},
- [9] =
+ [7] =
{field_arguments, 1},
{field_function, 0},
- [11] =
+ [9] =
{field_argument, 0},
{field_operator, 1},
+ [11] =
+ {field_close_tag, 1},
+ {field_open_tag, 0},
[13] =
{field_decorator, 0, .inherited = true},
{field_decorator, 1, .inherited = true},
@@ -2180,268 +2131,259 @@ static const TSFieldMapEntry ts_field_map_entries[] = {
[44] =
{field_label, 1},
[45] =
- {field_close_tag, 2},
- {field_content, 1},
- {field_open_tag, 0},
- [48] =
{field_name, 1},
- [49] =
+ [46] =
{field_attribute, 0},
- [50] =
- {field_template, 0},
- [51] =
+ [47] =
{field_member, 0},
- [52] =
+ [48] =
{field_property, 0},
- [53] =
+ [49] =
{field_body, 2},
{field_name, 1},
- [55] =
+ [51] =
{field_body, 2},
- [56] =
+ [52] =
{field_body, 2},
{field_parameters, 1},
- [58] =
+ [54] =
{field_arguments, 2},
{field_constructor, 1},
- [60] =
+ [56] =
{field_pattern, 1},
- [61] =
+ [57] =
{field_left, 0},
{field_operator, 1},
{field_right, 2},
- [64] =
+ [60] =
{field_object, 0},
{field_property, 2},
- [66] =
+ [62] =
{field_object, 0},
{field_optional_chain, 1},
{field_property, 2},
- [69] =
+ [65] =
{field_arguments, 2},
{field_function, 0},
{field_optional_chain, 1},
- [72] =
+ [68] =
{field_close_tag, 2},
{field_open_tag, 0},
- [74] =
+ [70] =
{field_body, 2},
{field_parameters, 0},
- [76] =
+ [72] =
{field_declaration, 2},
{field_decorator, 0, .inherited = true},
- [78] =
+ [74] =
{field_body, 2},
{field_decorator, 0, .inherited = true},
- [80] =
+ [76] =
{field_source, 2, .inherited = true},
- [81] =
+ [77] =
{field_value, 2},
- [82] =
+ [78] =
{field_key, 0},
{field_value, 2},
- [84] =
+ [80] =
{field_body, 2},
{field_name, 0},
{field_parameters, 1},
- [87] =
+ [83] =
{field_value, 1},
- [88] =
+ [84] =
{field_alternative, 3},
{field_condition, 1},
{field_consequence, 2},
- [91] =
+ [87] =
{field_body, 3},
{field_kind, 2, .inherited = true},
{field_left, 2, .inherited = true},
{field_operator, 2, .inherited = true},
{field_right, 2, .inherited = true},
{field_value, 2, .inherited = true},
- [97] =
+ [93] =
{field_body, 1},
{field_condition, 3},
- [99] =
+ [95] =
{field_body, 1},
{field_finalizer, 3},
{field_handler, 2},
- [102] =
+ [98] =
{field_attribute, 2, .inherited = true},
{field_name, 1},
- [104] =
+ [100] =
{field_attribute, 0, .inherited = true},
{field_attribute, 1, .inherited = true},
- [106] =
+ [102] =
{field_property, 1},
- [107] =
+ [103] =
{field_property, 0},
{field_value, 1, .inherited = true},
- [109] =
+ [105] =
{field_decorator, 0, .inherited = true},
{field_property, 1},
- [111] =
+ [107] =
{field_member, 1, .inherited = true},
- {field_template, 1, .inherited = true},
- [113] =
+ [108] =
{field_member, 0, .inherited = true},
{field_member, 1, .inherited = true},
- {field_template, 0, .inherited = true},
- {field_template, 1, .inherited = true},
- [117] =
+ [110] =
{field_body, 3},
{field_name, 1},
- [119] =
+ [112] =
{field_body, 3},
{field_parameter, 1},
- [121] =
+ [114] =
{field_body, 3},
{field_parameters, 2},
- [123] =
+ [116] =
{field_body, 3},
{field_parameters, 1},
- [125] =
+ [118] =
{field_body, 3},
{field_name, 1},
{field_parameters, 2},
- [128] =
+ [121] =
{field_flags, 3},
{field_pattern, 1},
- [130] =
+ [123] =
{field_index, 2},
{field_object, 0},
- [132] =
+ [125] =
{field_declaration, 3},
{field_decorator, 0, .inherited = true},
- [134] =
+ [127] =
{field_body, 3},
{field_decorator, 0, .inherited = true},
{field_name, 2},
- [137] =
+ [130] =
{field_body, 3},
{field_decorator, 0, .inherited = true},
- [139] =
+ [132] =
{field_alias, 2},
{field_name, 0},
- [141] =
+ [134] =
{field_body, 3},
{field_decorator, 0, .inherited = true},
{field_name, 1},
{field_parameters, 2},
- [145] =
+ [138] =
{field_property, 1},
{field_value, 2, .inherited = true},
- [147] =
+ [140] =
{field_decorator, 0, .inherited = true},
{field_property, 2},
- [149] =
+ [142] =
{field_decorator, 0, .inherited = true},
{field_property, 1},
{field_value, 2, .inherited = true},
- [152] =
+ [145] =
{field_body, 4},
{field_parameters, 3},
- [154] =
+ [147] =
{field_body, 4},
{field_name, 2},
{field_parameters, 3},
- [157] =
+ [150] =
{field_alternative, 4},
{field_condition, 0},
{field_consequence, 2},
- [160] =
+ [153] =
{field_index, 3},
{field_object, 0},
{field_optional_chain, 1},
- [163] =
+ [156] =
{field_decorator, 0, .inherited = true},
{field_value, 3},
- [165] =
+ [158] =
{field_body, 4},
{field_decorator, 0, .inherited = true},
{field_name, 2},
- [168] =
+ [161] =
{field_body, 4},
{field_decorator, 0, .inherited = true},
{field_name, 2},
{field_parameters, 3},
- [172] =
+ [165] =
{field_left, 1},
{field_operator, 2},
{field_right, 3},
- [175] =
+ [168] =
{field_body, 5},
{field_condition, 3},
{field_initializer, 2},
- [178] =
+ [171] =
{field_decorator, 0, .inherited = true},
{field_property, 2},
{field_value, 3, .inherited = true},
- [181] =
+ [174] =
{field_body, 5},
{field_name, 3},
{field_parameters, 4},
- [184] =
+ [177] =
{field_body, 5},
{field_decorator, 0, .inherited = true},
{field_name, 3},
{field_parameters, 4},
- [188] =
+ [181] =
{field_body, 3},
{field_value, 1},
- [190] =
+ [183] =
{field_kind, 1},
{field_left, 2},
{field_operator, 3},
{field_right, 4},
- [194] =
+ [187] =
{field_body, 6},
{field_condition, 3},
{field_increment, 4},
{field_initializer, 2},
- [198] =
+ [191] =
{field_body, 6},
{field_condition, 3},
{field_condition, 4},
{field_initializer, 2},
- [202] =
+ [195] =
{field_body, 6},
{field_condition, 4},
{field_initializer, 2},
- [205] =
+ [198] =
{field_body, 4},
{field_parameter, 2},
- [207] =
+ [200] =
{field_body, 6},
{field_decorator, 0, .inherited = true},
{field_name, 4},
{field_parameters, 5},
- [211] =
+ [204] =
{field_kind, 1},
{field_left, 2},
{field_operator, 4},
{field_right, 5},
{field_value, 3, .inherited = true},
- [216] =
+ [209] =
{field_kind, 1},
{field_left, 2},
{field_operator, 4},
{field_right, 5},
- [220] =
+ [213] =
{field_body, 7},
{field_condition, 3},
{field_condition, 4},
{field_increment, 5},
{field_initializer, 2},
- [225] =
+ [218] =
{field_body, 7},
{field_condition, 4},
{field_increment, 5},
{field_initializer, 2},
- [229] =
+ [222] =
{field_body, 7},
{field_condition, 4},
{field_condition, 5},
{field_initializer, 2},
- [233] =
+ [226] =
{field_body, 8},
{field_condition, 4},
{field_condition, 5},
@@ -2478,19 +2420,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE
[30] = {
[1] = alias_sym_statement_identifier,
},
- [45] = {
+ [43] = {
[2] = alias_sym_property_identifier,
},
- [47] = {
+ [45] = {
[2] = alias_sym_property_identifier,
},
- [56] = {
+ [54] = {
[0] = alias_sym_shorthand_property_identifier_pattern,
},
- [72] = {
+ [70] = {
[1] = sym_identifier,
},
- [94] = {
+ [92] = {
[1] = sym_identifier,
},
};
@@ -2514,55 +2456,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[11] = 11,
[12] = 12,
[13] = 13,
- [14] = 14,
+ [14] = 12,
[15] = 15,
- [16] = 16,
- [17] = 13,
- [18] = 16,
- [19] = 16,
- [20] = 13,
- [21] = 16,
- [22] = 13,
- [23] = 16,
- [24] = 13,
- [25] = 13,
- [26] = 16,
+ [16] = 12,
+ [17] = 15,
+ [18] = 18,
+ [19] = 15,
+ [20] = 20,
+ [21] = 12,
+ [22] = 15,
+ [23] = 15,
+ [24] = 12,
+ [25] = 25,
+ [26] = 26,
[27] = 27,
[28] = 28,
[29] = 29,
[30] = 30,
- [31] = 31,
+ [31] = 30,
[32] = 32,
- [33] = 33,
- [34] = 27,
- [35] = 35,
+ [33] = 27,
+ [34] = 28,
+ [35] = 25,
[36] = 36,
- [37] = 30,
- [38] = 38,
+ [37] = 37,
+ [38] = 29,
[39] = 39,
- [40] = 40,
+ [40] = 37,
[41] = 41,
[42] = 42,
[43] = 43,
- [44] = 41,
- [45] = 28,
- [46] = 38,
- [47] = 36,
- [48] = 31,
- [49] = 39,
- [50] = 40,
- [51] = 32,
- [52] = 52,
- [53] = 29,
- [54] = 42,
- [55] = 43,
- [56] = 33,
- [57] = 52,
- [58] = 58,
- [59] = 58,
- [60] = 58,
- [61] = 58,
- [62] = 58,
+ [44] = 44,
+ [45] = 26,
+ [46] = 39,
+ [47] = 47,
+ [48] = 48,
+ [49] = 41,
+ [50] = 32,
+ [51] = 42,
+ [52] = 36,
+ [53] = 43,
+ [54] = 44,
+ [55] = 48,
+ [56] = 56,
+ [57] = 56,
+ [58] = 56,
+ [59] = 56,
+ [60] = 56,
+ [61] = 61,
+ [62] = 62,
[63] = 63,
[64] = 64,
[65] = 65,
@@ -2574,107 +2516,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[71] = 71,
[72] = 72,
[73] = 73,
- [74] = 64,
+ [74] = 74,
[75] = 75,
[76] = 76,
- [77] = 64,
- [78] = 64,
- [79] = 79,
- [80] = 64,
- [81] = 81,
- [82] = 82,
- [83] = 64,
+ [77] = 77,
+ [78] = 76,
+ [79] = 76,
+ [80] = 76,
+ [81] = 76,
+ [82] = 76,
+ [83] = 83,
[84] = 84,
- [85] = 85,
- [86] = 86,
- [87] = 86,
- [88] = 85,
+ [85] = 84,
+ [86] = 83,
+ [87] = 87,
+ [88] = 87,
[89] = 89,
- [90] = 89,
+ [90] = 90,
[91] = 91,
- [92] = 92,
- [93] = 92,
- [94] = 94,
+ [92] = 89,
+ [93] = 93,
+ [94] = 93,
[95] = 95,
[96] = 96,
- [97] = 96,
+ [97] = 97,
[98] = 98,
- [99] = 99,
+ [99] = 96,
[100] = 100,
- [101] = 101,
- [102] = 98,
- [103] = 98,
+ [101] = 96,
+ [102] = 102,
+ [103] = 103,
[104] = 104,
- [105] = 105,
+ [105] = 104,
[106] = 106,
[107] = 107,
- [108] = 105,
+ [108] = 108,
[109] = 109,
[110] = 110,
- [111] = 111,
- [112] = 110,
+ [111] = 110,
+ [112] = 108,
[113] = 113,
- [114] = 113,
+ [114] = 114,
[115] = 115,
- [116] = 116,
+ [116] = 115,
[117] = 117,
[118] = 118,
[119] = 118,
- [120] = 115,
- [121] = 116,
+ [120] = 113,
+ [121] = 117,
[122] = 122,
- [123] = 122,
+ [123] = 123,
[124] = 124,
[125] = 125,
[126] = 126,
[127] = 127,
- [128] = 128,
- [129] = 129,
+ [128] = 122,
+ [129] = 122,
[130] = 130,
[131] = 131,
- [132] = 124,
+ [132] = 132,
[133] = 133,
- [134] = 134,
+ [134] = 132,
[135] = 135,
- [136] = 128,
+ [136] = 131,
[137] = 137,
- [138] = 125,
+ [138] = 132,
[139] = 139,
[140] = 140,
- [141] = 135,
- [142] = 137,
- [143] = 143,
- [144] = 140,
- [145] = 145,
- [146] = 146,
- [147] = 135,
- [148] = 140,
- [149] = 137,
- [150] = 124,
- [151] = 134,
- [152] = 125,
- [153] = 143,
- [154] = 128,
+ [141] = 141,
+ [142] = 125,
+ [143] = 131,
+ [144] = 123,
+ [145] = 126,
+ [146] = 127,
+ [147] = 127,
+ [148] = 148,
+ [149] = 124,
+ [150] = 140,
+ [151] = 125,
+ [152] = 126,
+ [153] = 127,
+ [154] = 154,
[155] = 155,
- [156] = 146,
- [157] = 140,
- [158] = 135,
- [159] = 125,
- [160] = 128,
- [161] = 137,
- [162] = 134,
- [163] = 124,
- [164] = 140,
- [165] = 135,
- [166] = 137,
+ [156] = 122,
+ [157] = 155,
+ [158] = 148,
+ [159] = 123,
+ [160] = 124,
+ [161] = 125,
+ [162] = 131,
+ [163] = 163,
+ [164] = 124,
+ [165] = 165,
+ [166] = 123,
[167] = 124,
- [168] = 134,
- [169] = 125,
- [170] = 134,
- [171] = 128,
- [172] = 172,
- [173] = 139,
- [174] = 174,
+ [168] = 125,
+ [169] = 126,
+ [170] = 127,
+ [171] = 122,
+ [172] = 131,
+ [173] = 126,
+ [174] = 123,
[175] = 175,
[176] = 176,
[177] = 177,
@@ -2684,9 +2626,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[181] = 181,
[182] = 182,
[183] = 183,
- [184] = 184,
+ [184] = 176,
[185] = 185,
- [186] = 181,
+ [186] = 186,
[187] = 187,
[188] = 188,
[189] = 189,
@@ -2699,166 +2641,166 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[196] = 196,
[197] = 197,
[198] = 198,
- [199] = 199,
- [200] = 200,
+ [199] = 179,
+ [200] = 181,
[201] = 201,
- [202] = 187,
- [203] = 203,
- [204] = 188,
- [205] = 179,
- [206] = 206,
- [207] = 189,
- [208] = 190,
- [209] = 185,
- [210] = 191,
- [211] = 174,
+ [202] = 175,
+ [203] = 182,
+ [204] = 183,
+ [205] = 185,
+ [206] = 186,
+ [207] = 187,
+ [208] = 188,
+ [209] = 189,
+ [210] = 190,
+ [211] = 191,
[212] = 192,
[213] = 193,
[214] = 194,
[215] = 195,
[216] = 196,
- [217] = 197,
- [218] = 198,
- [219] = 199,
- [220] = 200,
- [221] = 183,
- [222] = 203,
- [223] = 201,
- [224] = 183,
- [225] = 184,
- [226] = 185,
- [227] = 181,
- [228] = 187,
- [229] = 188,
- [230] = 189,
- [231] = 191,
- [232] = 192,
- [233] = 194,
- [234] = 195,
- [235] = 196,
- [236] = 197,
- [237] = 198,
- [238] = 199,
- [239] = 200,
- [240] = 201,
- [241] = 241,
- [242] = 242,
- [243] = 184,
- [244] = 179,
- [245] = 174,
- [246] = 246,
- [247] = 247,
- [248] = 203,
- [249] = 184,
- [250] = 185,
- [251] = 181,
- [252] = 187,
- [253] = 188,
- [254] = 206,
- [255] = 189,
- [256] = 191,
- [257] = 192,
- [258] = 193,
- [259] = 194,
- [260] = 195,
- [261] = 196,
- [262] = 197,
- [263] = 198,
- [264] = 199,
- [265] = 200,
- [266] = 201,
- [267] = 242,
- [268] = 268,
- [269] = 179,
- [270] = 206,
- [271] = 174,
- [272] = 183,
- [273] = 273,
- [274] = 183,
- [275] = 184,
- [276] = 185,
+ [217] = 198,
+ [218] = 218,
+ [219] = 219,
+ [220] = 220,
+ [221] = 178,
+ [222] = 222,
+ [223] = 223,
+ [224] = 224,
+ [225] = 219,
+ [226] = 219,
+ [227] = 222,
+ [228] = 228,
+ [229] = 179,
+ [230] = 181,
+ [231] = 201,
+ [232] = 182,
+ [233] = 183,
+ [234] = 185,
+ [235] = 187,
+ [236] = 188,
+ [237] = 189,
+ [238] = 190,
+ [239] = 191,
+ [240] = 192,
+ [241] = 193,
+ [242] = 194,
+ [243] = 195,
+ [244] = 196,
+ [245] = 198,
+ [246] = 178,
+ [247] = 222,
+ [248] = 248,
+ [249] = 249,
+ [250] = 181,
+ [251] = 201,
+ [252] = 175,
+ [253] = 182,
+ [254] = 183,
+ [255] = 176,
+ [256] = 185,
+ [257] = 187,
+ [258] = 188,
+ [259] = 189,
+ [260] = 190,
+ [261] = 191,
+ [262] = 192,
+ [263] = 193,
+ [264] = 194,
+ [265] = 195,
+ [266] = 196,
+ [267] = 198,
+ [268] = 220,
+ [269] = 269,
+ [270] = 270,
+ [271] = 178,
+ [272] = 176,
+ [273] = 222,
+ [274] = 179,
+ [275] = 201,
+ [276] = 179,
[277] = 181,
- [278] = 187,
- [279] = 206,
- [280] = 188,
- [281] = 189,
- [282] = 191,
- [283] = 192,
- [284] = 193,
- [285] = 194,
- [286] = 195,
- [287] = 196,
- [288] = 197,
- [289] = 198,
- [290] = 199,
- [291] = 200,
- [292] = 201,
- [293] = 179,
- [294] = 174,
- [295] = 206,
- [296] = 193,
- [297] = 297,
- [298] = 297,
- [299] = 297,
- [300] = 300,
- [301] = 301,
- [302] = 300,
- [303] = 300,
- [304] = 301,
+ [278] = 201,
+ [279] = 175,
+ [280] = 182,
+ [281] = 183,
+ [282] = 185,
+ [283] = 187,
+ [284] = 188,
+ [285] = 189,
+ [286] = 190,
+ [287] = 191,
+ [288] = 192,
+ [289] = 193,
+ [290] = 194,
+ [291] = 195,
+ [292] = 196,
+ [293] = 198,
+ [294] = 178,
+ [295] = 222,
+ [296] = 176,
+ [297] = 175,
+ [298] = 298,
+ [299] = 299,
+ [300] = 298,
+ [301] = 298,
+ [302] = 299,
+ [303] = 303,
+ [304] = 303,
[305] = 305,
[306] = 305,
[307] = 305,
- [308] = 308,
- [309] = 308,
- [310] = 308,
- [311] = 311,
- [312] = 311,
+ [308] = 303,
+ [309] = 309,
+ [310] = 309,
+ [311] = 63,
+ [312] = 64,
[313] = 313,
- [314] = 72,
- [315] = 70,
+ [314] = 313,
+ [315] = 313,
[316] = 316,
- [317] = 316,
- [318] = 311,
- [319] = 319,
- [320] = 311,
- [321] = 71,
- [322] = 73,
- [323] = 311,
+ [317] = 317,
+ [318] = 309,
+ [319] = 316,
+ [320] = 309,
+ [321] = 309,
+ [322] = 317,
+ [323] = 309,
[324] = 324,
- [325] = 324,
- [326] = 319,
- [327] = 327,
- [328] = 311,
- [329] = 324,
- [330] = 327,
- [331] = 331,
+ [325] = 325,
+ [326] = 61,
+ [327] = 65,
+ [328] = 328,
+ [329] = 325,
+ [330] = 316,
+ [331] = 309,
[332] = 332,
[333] = 333,
- [334] = 71,
- [335] = 72,
- [336] = 73,
- [337] = 337,
+ [334] = 332,
+ [335] = 64,
+ [336] = 63,
+ [337] = 61,
[338] = 338,
[339] = 339,
- [340] = 340,
+ [340] = 65,
[341] = 341,
[342] = 342,
[343] = 343,
- [344] = 319,
- [345] = 70,
+ [344] = 328,
+ [345] = 345,
[346] = 346,
[347] = 347,
- [348] = 348,
- [349] = 68,
- [350] = 69,
+ [348] = 66,
+ [349] = 349,
+ [350] = 350,
[351] = 351,
- [352] = 311,
+ [352] = 343,
[353] = 353,
[354] = 354,
- [355] = 355,
- [356] = 355,
- [357] = 357,
- [358] = 311,
+ [355] = 67,
+ [356] = 309,
+ [357] = 309,
+ [358] = 358,
[359] = 359,
[360] = 360,
[361] = 361,
@@ -2912,7 +2854,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[409] = 409,
[410] = 410,
[411] = 411,
- [412] = 332,
+ [412] = 412,
[413] = 413,
[414] = 414,
[415] = 415,
@@ -2920,12 +2862,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[417] = 417,
[418] = 418,
[419] = 419,
- [420] = 401,
+ [420] = 420,
[421] = 421,
[422] = 422,
[423] = 423,
[424] = 424,
- [425] = 311,
+ [425] = 425,
[426] = 426,
[427] = 427,
[428] = 428,
@@ -2933,92 +2875,92 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[430] = 430,
[431] = 431,
[432] = 432,
- [433] = 432,
+ [433] = 359,
[434] = 432,
[435] = 435,
[436] = 436,
- [437] = 437,
- [438] = 347,
- [439] = 439,
+ [437] = 432,
+ [438] = 438,
+ [439] = 438,
[440] = 440,
- [441] = 441,
- [442] = 441,
- [443] = 440,
+ [441] = 440,
+ [442] = 442,
+ [443] = 430,
[444] = 444,
- [445] = 430,
- [446] = 446,
- [447] = 447,
+ [445] = 429,
+ [446] = 436,
+ [447] = 438,
[448] = 448,
- [449] = 449,
- [450] = 450,
- [451] = 347,
+ [449] = 440,
+ [450] = 427,
+ [451] = 438,
[452] = 452,
[453] = 453,
- [454] = 454,
- [455] = 440,
- [456] = 436,
+ [454] = 440,
+ [455] = 455,
+ [456] = 452,
[457] = 435,
- [458] = 458,
- [459] = 431,
- [460] = 460,
- [461] = 441,
+ [458] = 440,
+ [459] = 459,
+ [460] = 438,
+ [461] = 430,
[462] = 462,
- [463] = 429,
- [464] = 458,
- [465] = 441,
- [466] = 437,
- [467] = 441,
- [468] = 440,
+ [463] = 463,
+ [464] = 464,
+ [465] = 465,
+ [466] = 455,
+ [467] = 467,
+ [468] = 464,
[469] = 469,
- [470] = 347,
- [471] = 430,
+ [470] = 438,
+ [471] = 440,
[472] = 472,
- [473] = 440,
- [474] = 460,
- [475] = 475,
- [476] = 440,
- [477] = 439,
- [478] = 462,
- [479] = 475,
- [480] = 441,
- [481] = 469,
- [482] = 472,
+ [473] = 473,
+ [474] = 359,
+ [475] = 431,
+ [476] = 359,
+ [477] = 428,
+ [478] = 453,
+ [479] = 469,
+ [480] = 480,
+ [481] = 430,
+ [482] = 467,
[483] = 483,
- [484] = 430,
+ [484] = 484,
[485] = 485,
- [486] = 430,
- [487] = 483,
- [488] = 488,
+ [486] = 483,
+ [487] = 430,
+ [488] = 455,
[489] = 489,
- [490] = 458,
- [491] = 485,
- [492] = 440,
- [493] = 441,
- [494] = 460,
- [495] = 495,
- [496] = 483,
- [497] = 489,
- [498] = 440,
- [499] = 488,
- [500] = 441,
- [501] = 440,
- [502] = 441,
- [503] = 495,
- [504] = 430,
- [505] = 63,
- [506] = 506,
+ [490] = 440,
+ [491] = 438,
+ [492] = 464,
+ [493] = 485,
+ [494] = 480,
+ [495] = 440,
+ [496] = 438,
+ [497] = 484,
+ [498] = 483,
+ [499] = 438,
+ [500] = 440,
+ [501] = 489,
+ [502] = 430,
+ [503] = 503,
+ [504] = 504,
+ [505] = 62,
+ [506] = 63,
[507] = 507,
- [508] = 508,
+ [508] = 64,
[509] = 509,
- [510] = 70,
+ [510] = 510,
[511] = 511,
[512] = 512,
- [513] = 72,
+ [513] = 513,
[514] = 514,
[515] = 515,
[516] = 516,
[517] = 517,
- [518] = 73,
+ [518] = 518,
[519] = 519,
[520] = 520,
[521] = 521,
@@ -3038,7 +2980,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[535] = 535,
[536] = 536,
[537] = 537,
- [538] = 538,
+ [538] = 66,
[539] = 539,
[540] = 540,
[541] = 541,
@@ -3047,7 +2989,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[544] = 544,
[545] = 545,
[546] = 546,
- [547] = 68,
+ [547] = 547,
[548] = 548,
[549] = 549,
[550] = 550,
@@ -3057,35 +2999,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[554] = 554,
[555] = 555,
[556] = 556,
- [557] = 557,
+ [557] = 67,
[558] = 558,
[559] = 559,
- [560] = 69,
+ [560] = 560,
[561] = 561,
[562] = 562,
[563] = 563,
[564] = 564,
- [565] = 71,
+ [565] = 565,
[566] = 566,
[567] = 567,
[568] = 568,
[569] = 569,
- [570] = 570,
+ [570] = 61,
[571] = 571,
- [572] = 572,
+ [572] = 65,
[573] = 573,
[574] = 574,
[575] = 575,
[576] = 576,
- [577] = 577,
- [578] = 527,
- [579] = 579,
- [580] = 68,
+ [577] = 511,
+ [578] = 578,
+ [579] = 503,
+ [580] = 580,
[581] = 581,
[582] = 582,
- [583] = 71,
- [584] = 70,
- [585] = 72,
+ [583] = 583,
+ [584] = 504,
+ [585] = 585,
[586] = 586,
[587] = 587,
[588] = 588,
@@ -3097,155 +3039,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[594] = 594,
[595] = 595,
[596] = 596,
- [597] = 597,
+ [597] = 525,
[598] = 598,
- [599] = 599,
+ [599] = 533,
[600] = 600,
- [601] = 601,
- [602] = 73,
- [603] = 506,
- [604] = 507,
- [605] = 605,
- [606] = 69,
+ [601] = 542,
+ [602] = 602,
+ [603] = 603,
+ [604] = 62,
+ [605] = 62,
+ [606] = 525,
[607] = 607,
- [608] = 608,
- [609] = 609,
- [610] = 509,
- [611] = 574,
- [612] = 523,
- [613] = 613,
- [614] = 517,
- [615] = 514,
- [616] = 574,
- [617] = 511,
- [618] = 508,
- [619] = 515,
- [620] = 63,
- [621] = 621,
- [622] = 564,
- [623] = 527,
- [624] = 63,
- [625] = 523,
- [626] = 512,
- [627] = 509,
- [628] = 559,
- [629] = 544,
- [630] = 595,
- [631] = 613,
- [632] = 509,
- [633] = 76,
- [634] = 575,
- [635] = 635,
- [636] = 596,
- [637] = 568,
- [638] = 597,
- [639] = 569,
- [640] = 598,
- [641] = 599,
- [642] = 519,
- [643] = 543,
- [644] = 609,
- [645] = 590,
- [646] = 570,
- [647] = 539,
- [648] = 541,
- [649] = 531,
- [650] = 566,
- [651] = 552,
- [652] = 548,
- [653] = 516,
- [654] = 530,
- [655] = 550,
- [656] = 549,
- [657] = 581,
- [658] = 521,
- [659] = 551,
- [660] = 558,
- [661] = 79,
- [662] = 545,
- [663] = 582,
- [664] = 571,
- [665] = 591,
- [666] = 600,
- [667] = 592,
- [668] = 561,
- [669] = 81,
- [670] = 605,
- [671] = 562,
- [672] = 572,
- [673] = 581,
- [674] = 582,
- [675] = 607,
- [676] = 82,
- [677] = 573,
- [678] = 533,
- [679] = 586,
- [680] = 534,
- [681] = 537,
- [682] = 587,
- [683] = 588,
- [684] = 589,
- [685] = 535,
- [686] = 686,
- [687] = 591,
- [688] = 592,
- [689] = 593,
- [690] = 594,
- [691] = 595,
- [692] = 613,
- [693] = 596,
- [694] = 597,
- [695] = 598,
- [696] = 599,
- [697] = 600,
- [698] = 601,
- [699] = 84,
- [700] = 605,
- [701] = 607,
- [702] = 608,
- [703] = 65,
- [704] = 608,
- [705] = 609,
- [706] = 520,
- [707] = 66,
- [708] = 525,
- [709] = 528,
- [710] = 529,
- [711] = 67,
- [712] = 563,
- [713] = 576,
- [714] = 593,
- [715] = 522,
- [716] = 509,
- [717] = 524,
- [718] = 601,
- [719] = 579,
- [720] = 553,
- [721] = 577,
- [722] = 532,
- [723] = 594,
- [724] = 536,
- [725] = 554,
- [726] = 540,
- [727] = 554,
- [728] = 567,
- [729] = 635,
- [730] = 538,
- [731] = 574,
- [732] = 527,
- [733] = 523,
- [734] = 555,
- [735] = 587,
- [736] = 556,
- [737] = 588,
- [738] = 526,
- [739] = 589,
- [740] = 586,
- [741] = 557,
- [742] = 546,
- [743] = 579,
- [744] = 542,
- [745] = 590,
+ [608] = 569,
+ [609] = 510,
+ [610] = 533,
+ [611] = 507,
+ [612] = 511,
+ [613] = 542,
+ [614] = 509,
+ [615] = 512,
+ [616] = 571,
+ [617] = 513,
+ [618] = 74,
+ [619] = 550,
+ [620] = 555,
+ [621] = 556,
+ [622] = 558,
+ [623] = 587,
+ [624] = 580,
+ [625] = 532,
+ [626] = 551,
+ [627] = 559,
+ [628] = 560,
+ [629] = 589,
+ [630] = 561,
+ [631] = 603,
+ [632] = 632,
+ [633] = 562,
+ [634] = 515,
+ [635] = 563,
+ [636] = 564,
+ [637] = 526,
+ [638] = 72,
+ [639] = 565,
+ [640] = 566,
+ [641] = 527,
+ [642] = 70,
+ [643] = 511,
+ [644] = 534,
+ [645] = 645,
+ [646] = 71,
+ [647] = 516,
+ [648] = 517,
+ [649] = 518,
+ [650] = 73,
+ [651] = 528,
+ [652] = 75,
+ [653] = 519,
+ [654] = 520,
+ [655] = 521,
+ [656] = 68,
+ [657] = 522,
+ [658] = 535,
+ [659] = 552,
+ [660] = 553,
+ [661] = 69,
+ [662] = 554,
+ [663] = 567,
+ [664] = 568,
+ [665] = 514,
+ [666] = 596,
+ [667] = 525,
+ [668] = 533,
+ [669] = 542,
+ [670] = 529,
+ [671] = 632,
+ [672] = 524,
+ [673] = 575,
+ [674] = 530,
+ [675] = 536,
+ [676] = 537,
+ [677] = 523,
+ [678] = 531,
+ [679] = 539,
+ [680] = 540,
+ [681] = 541,
+ [682] = 514,
+ [683] = 573,
+ [684] = 583,
+ [685] = 543,
+ [686] = 585,
+ [687] = 586,
+ [688] = 544,
+ [689] = 580,
+ [690] = 582,
+ [691] = 588,
+ [692] = 575,
+ [693] = 583,
+ [694] = 585,
+ [695] = 586,
+ [696] = 588,
+ [697] = 590,
+ [698] = 590,
+ [699] = 591,
+ [700] = 592,
+ [701] = 574,
+ [702] = 593,
+ [703] = 594,
+ [704] = 595,
+ [705] = 598,
+ [706] = 600,
+ [707] = 602,
+ [708] = 576,
+ [709] = 578,
+ [710] = 591,
+ [711] = 592,
+ [712] = 587,
+ [713] = 589,
+ [714] = 603,
+ [715] = 574,
+ [716] = 593,
+ [717] = 594,
+ [718] = 596,
+ [719] = 595,
+ [720] = 598,
+ [721] = 600,
+ [722] = 602,
+ [723] = 545,
+ [724] = 546,
+ [725] = 511,
+ [726] = 547,
+ [727] = 581,
+ [728] = 576,
+ [729] = 548,
+ [730] = 578,
+ [731] = 549,
+ [732] = 581,
+ [733] = 582,
+ [734] = 734,
+ [735] = 645,
+ [736] = 736,
+ [737] = 737,
+ [738] = 738,
+ [739] = 739,
+ [740] = 525,
+ [741] = 533,
+ [742] = 542,
+ [743] = 743,
+ [744] = 744,
+ [745] = 745,
[746] = 746,
[747] = 747,
[748] = 748,
@@ -3255,165 +3197,165 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[752] = 752,
[753] = 753,
[754] = 754,
- [755] = 755,
- [756] = 686,
- [757] = 757,
- [758] = 758,
- [759] = 574,
- [760] = 527,
- [761] = 523,
- [762] = 762,
+ [755] = 754,
+ [756] = 753,
+ [757] = 596,
+ [758] = 607,
+ [759] = 525,
+ [760] = 760,
+ [761] = 533,
+ [762] = 542,
[763] = 763,
- [764] = 764,
- [765] = 765,
- [766] = 595,
+ [764] = 603,
+ [765] = 753,
+ [766] = 766,
[767] = 767,
- [768] = 599,
- [769] = 600,
- [770] = 601,
- [771] = 605,
- [772] = 767,
- [773] = 579,
- [774] = 607,
- [775] = 608,
- [776] = 776,
+ [768] = 768,
+ [769] = 754,
+ [770] = 760,
+ [771] = 771,
+ [772] = 772,
+ [773] = 768,
+ [774] = 774,
+ [775] = 775,
+ [776] = 753,
[777] = 777,
- [778] = 609,
- [779] = 581,
- [780] = 635,
- [781] = 781,
+ [778] = 778,
+ [779] = 779,
+ [780] = 780,
+ [781] = 580,
[782] = 582,
[783] = 783,
- [784] = 764,
- [785] = 586,
- [786] = 613,
- [787] = 777,
+ [784] = 751,
+ [785] = 575,
+ [786] = 589,
+ [787] = 585,
[788] = 788,
- [789] = 789,
- [790] = 790,
- [791] = 790,
- [792] = 792,
- [793] = 765,
- [794] = 789,
- [795] = 795,
- [796] = 762,
- [797] = 587,
- [798] = 749,
- [799] = 799,
- [800] = 789,
- [801] = 596,
- [802] = 802,
- [803] = 803,
- [804] = 763,
- [805] = 589,
- [806] = 597,
- [807] = 590,
- [808] = 598,
+ [789] = 777,
+ [790] = 586,
+ [791] = 791,
+ [792] = 588,
+ [793] = 590,
+ [794] = 591,
+ [795] = 592,
+ [796] = 581,
+ [797] = 771,
+ [798] = 574,
+ [799] = 593,
+ [800] = 594,
+ [801] = 595,
+ [802] = 598,
+ [803] = 778,
+ [804] = 600,
+ [805] = 783,
+ [806] = 602,
+ [807] = 791,
+ [808] = 576,
[809] = 809,
- [810] = 591,
- [811] = 594,
- [812] = 763,
+ [810] = 578,
+ [811] = 788,
+ [812] = 767,
[813] = 813,
- [814] = 574,
- [815] = 789,
- [816] = 527,
- [817] = 592,
- [818] = 818,
- [819] = 523,
- [820] = 802,
+ [814] = 587,
+ [815] = 736,
+ [816] = 632,
+ [817] = 766,
+ [818] = 583,
+ [819] = 576,
+ [820] = 511,
[821] = 821,
- [822] = 813,
+ [822] = 514,
[823] = 823,
- [824] = 621,
+ [824] = 823,
[825] = 825,
- [826] = 593,
- [827] = 788,
- [828] = 809,
- [829] = 795,
- [830] = 588,
- [831] = 600,
+ [826] = 823,
+ [827] = 823,
+ [828] = 823,
+ [829] = 823,
+ [830] = 744,
+ [831] = 831,
[832] = 832,
[833] = 833,
- [834] = 834,
- [835] = 554,
- [836] = 832,
- [837] = 579,
- [838] = 838,
- [839] = 839,
- [840] = 832,
- [841] = 841,
- [842] = 832,
- [843] = 832,
- [844] = 832,
- [845] = 758,
- [846] = 581,
- [847] = 509,
- [848] = 586,
- [849] = 587,
- [850] = 588,
- [851] = 589,
- [852] = 590,
- [853] = 591,
- [854] = 592,
- [855] = 593,
- [856] = 594,
- [857] = 595,
- [858] = 613,
- [859] = 596,
- [860] = 597,
- [861] = 598,
- [862] = 599,
- [863] = 601,
- [864] = 605,
- [865] = 607,
- [866] = 608,
- [867] = 609,
- [868] = 582,
+ [834] = 580,
+ [835] = 582,
+ [836] = 575,
+ [837] = 583,
+ [838] = 585,
+ [839] = 586,
+ [840] = 588,
+ [841] = 590,
+ [842] = 591,
+ [843] = 592,
+ [844] = 574,
+ [845] = 593,
+ [846] = 594,
+ [847] = 595,
+ [848] = 598,
+ [849] = 600,
+ [850] = 602,
+ [851] = 578,
+ [852] = 587,
+ [853] = 589,
+ [854] = 603,
+ [855] = 596,
+ [856] = 581,
+ [857] = 857,
+ [858] = 858,
+ [859] = 857,
+ [860] = 857,
+ [861] = 861,
+ [862] = 857,
+ [863] = 736,
+ [864] = 857,
+ [865] = 861,
+ [866] = 866,
+ [867] = 867,
+ [868] = 867,
[869] = 869,
- [870] = 869,
+ [870] = 870,
[871] = 871,
- [872] = 749,
- [873] = 873,
+ [872] = 870,
+ [873] = 870,
[874] = 871,
- [875] = 869,
- [876] = 869,
- [877] = 869,
- [878] = 878,
- [879] = 879,
- [880] = 879,
+ [875] = 875,
+ [876] = 876,
+ [877] = 877,
+ [878] = 877,
+ [879] = 871,
+ [880] = 880,
[881] = 881,
[882] = 882,
- [883] = 883,
- [884] = 881,
+ [883] = 881,
+ [884] = 882,
[885] = 881,
[886] = 882,
- [887] = 881,
+ [887] = 882,
[888] = 882,
- [889] = 882,
- [890] = 890,
- [891] = 891,
- [892] = 892,
- [893] = 892,
- [894] = 894,
+ [889] = 881,
+ [890] = 882,
+ [891] = 881,
+ [892] = 881,
+ [893] = 893,
+ [894] = 893,
[895] = 895,
- [896] = 896,
- [897] = 895,
- [898] = 896,
- [899] = 896,
- [900] = 895,
- [901] = 895,
- [902] = 896,
- [903] = 895,
- [904] = 896,
- [905] = 896,
- [906] = 895,
+ [896] = 893,
+ [897] = 893,
+ [898] = 893,
+ [899] = 893,
+ [900] = 900,
+ [901] = 901,
+ [902] = 902,
+ [903] = 903,
+ [904] = 904,
+ [905] = 905,
+ [906] = 906,
[907] = 907,
[908] = 908,
- [909] = 908,
- [910] = 908,
- [911] = 908,
- [912] = 908,
- [913] = 908,
+ [909] = 909,
+ [910] = 910,
+ [911] = 911,
+ [912] = 912,
+ [913] = 913,
[914] = 914,
[915] = 915,
[916] = 916,
@@ -3440,159 +3382,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[937] = 937,
[938] = 938,
[939] = 939,
- [940] = 70,
+ [940] = 940,
[941] = 941,
[942] = 942,
[943] = 943,
[944] = 944,
[945] = 945,
- [946] = 72,
+ [946] = 946,
[947] = 947,
- [948] = 948,
+ [948] = 63,
[949] = 949,
[950] = 950,
[951] = 951,
[952] = 952,
- [953] = 953,
+ [953] = 64,
[954] = 954,
[955] = 955,
- [956] = 956,
- [957] = 957,
+ [956] = 61,
+ [957] = 65,
[958] = 958,
[959] = 959,
[960] = 960,
- [961] = 961,
+ [961] = 906,
[962] = 962,
[963] = 963,
[964] = 964,
- [965] = 965,
+ [965] = 907,
[966] = 966,
- [967] = 967,
- [968] = 575,
+ [967] = 906,
+ [968] = 960,
[969] = 969,
- [970] = 970,
+ [970] = 911,
[971] = 971,
- [972] = 73,
+ [972] = 916,
[973] = 973,
- [974] = 974,
+ [974] = 923,
[975] = 975,
- [976] = 976,
- [977] = 71,
- [978] = 545,
- [979] = 979,
- [980] = 929,
+ [976] = 544,
+ [977] = 920,
+ [978] = 978,
+ [979] = 919,
+ [980] = 980,
[981] = 981,
- [982] = 982,
- [983] = 929,
- [984] = 984,
- [985] = 920,
- [986] = 982,
- [987] = 919,
- [988] = 988,
+ [982] = 916,
+ [983] = 983,
+ [984] = 978,
+ [985] = 983,
+ [986] = 975,
+ [987] = 987,
+ [988] = 980,
[989] = 989,
- [990] = 543,
+ [990] = 987,
[991] = 991,
[992] = 992,
- [993] = 964,
- [994] = 994,
+ [993] = 991,
+ [994] = 992,
[995] = 995,
[996] = 996,
- [997] = 997,
- [998] = 998,
- [999] = 999,
- [1000] = 989,
- [1001] = 1001,
- [1002] = 933,
- [1003] = 934,
+ [997] = 918,
+ [998] = 995,
+ [999] = 996,
+ [1000] = 564,
+ [1001] = 568,
+ [1002] = 1002,
+ [1003] = 981,
[1004] = 1004,
- [1005] = 965,
- [1006] = 966,
- [1007] = 1007,
+ [1005] = 989,
+ [1006] = 1006,
+ [1007] = 973,
[1008] = 1008,
[1009] = 1009,
- [1010] = 996,
- [1011] = 994,
- [1012] = 964,
- [1013] = 1004,
- [1014] = 557,
- [1015] = 995,
- [1016] = 999,
- [1017] = 1008,
- [1018] = 1009,
- [1019] = 997,
- [1020] = 998,
- [1021] = 1001,
+ [1010] = 1010,
+ [1011] = 1011,
+ [1012] = 1012,
+ [1013] = 1009,
+ [1014] = 1014,
+ [1015] = 1015,
+ [1016] = 1012,
+ [1017] = 1017,
+ [1018] = 1015,
+ [1019] = 1015,
+ [1020] = 1020,
+ [1021] = 1011,
[1022] = 1022,
- [1023] = 524,
+ [1023] = 1015,
[1024] = 1022,
- [1025] = 1025,
- [1026] = 1026,
- [1027] = 1027,
- [1028] = 1028,
- [1029] = 1029,
- [1030] = 1030,
+ [1025] = 1010,
+ [1026] = 1020,
+ [1027] = 1008,
+ [1028] = 1017,
+ [1029] = 1015,
+ [1030] = 1014,
[1031] = 1031,
- [1032] = 1028,
- [1033] = 1028,
- [1034] = 1028,
- [1035] = 1025,
- [1036] = 1027,
- [1037] = 1030,
- [1038] = 1038,
- [1039] = 1038,
- [1040] = 1040,
- [1041] = 1041,
- [1042] = 1029,
- [1043] = 1031,
- [1044] = 1041,
- [1045] = 1026,
- [1046] = 1040,
- [1047] = 1028,
- [1048] = 1048,
- [1049] = 1049,
- [1050] = 1049,
- [1051] = 1051,
- [1052] = 1051,
- [1053] = 1051,
- [1054] = 1049,
- [1055] = 1055,
- [1056] = 1055,
- [1057] = 1055,
- [1058] = 1055,
- [1059] = 1051,
- [1060] = 1049,
+ [1032] = 1032,
+ [1033] = 1033,
+ [1034] = 1034,
+ [1035] = 1032,
+ [1036] = 1034,
+ [1037] = 1033,
+ [1038] = 1032,
+ [1039] = 1033,
+ [1040] = 1034,
+ [1041] = 1032,
+ [1042] = 1034,
+ [1043] = 1033,
+ [1044] = 1044,
+ [1045] = 1045,
+ [1046] = 1044,
+ [1047] = 1047,
+ [1048] = 1047,
+ [1049] = 1044,
+ [1050] = 1047,
+ [1051] = 1044,
+ [1052] = 1047,
+ [1053] = 1053,
+ [1054] = 1054,
+ [1055] = 1054,
+ [1056] = 1056,
+ [1057] = 1057,
+ [1058] = 1058,
+ [1059] = 1058,
+ [1060] = 1057,
[1061] = 1061,
[1062] = 1062,
- [1063] = 1063,
+ [1063] = 1062,
[1064] = 1061,
- [1065] = 1061,
- [1066] = 1063,
+ [1065] = 1057,
+ [1066] = 1054,
[1067] = 1061,
- [1068] = 1063,
- [1069] = 1063,
+ [1068] = 1061,
+ [1069] = 1058,
[1070] = 1070,
- [1071] = 1071,
- [1072] = 1072,
- [1073] = 1070,
- [1074] = 1074,
- [1075] = 1075,
- [1076] = 1072,
- [1077] = 1074,
- [1078] = 1070,
- [1079] = 1075,
- [1080] = 1071,
- [1081] = 1072,
- [1082] = 1074,
- [1083] = 1075,
- [1084] = 1084,
- [1085] = 1085,
+ [1071] = 1058,
+ [1072] = 1054,
+ [1073] = 1062,
+ [1074] = 1062,
+ [1075] = 1057,
+ [1076] = 1076,
+ [1077] = 1077,
+ [1078] = 1078,
+ [1079] = 1079,
+ [1080] = 1080,
+ [1081] = 1081,
+ [1082] = 1082,
+ [1083] = 1082,
+ [1084] = 1082,
+ [1085] = 1082,
[1086] = 1086,
- [1087] = 1072,
- [1088] = 1071,
- [1089] = 1070,
- [1090] = 1074,
- [1091] = 1075,
- [1092] = 1071,
+ [1087] = 1087,
+ [1088] = 1088,
+ [1089] = 1089,
+ [1090] = 1082,
+ [1091] = 1091,
+ [1092] = 1092,
[1093] = 1093,
[1094] = 1094,
[1095] = 1095,
@@ -3601,10 +3543,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[1098] = 1098,
[1099] = 1099,
[1100] = 1100,
- [1101] = 1101,
- [1102] = 1098,
+ [1101] = 1082,
+ [1102] = 1102,
[1103] = 1103,
- [1104] = 1098,
+ [1104] = 1104,
[1105] = 1105,
[1106] = 1106,
[1107] = 1107,
@@ -3612,186 +3554,186 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[1109] = 1109,
[1110] = 1110,
[1111] = 1111,
- [1112] = 1112,
+ [1112] = 569,
[1113] = 1113,
[1114] = 1114,
- [1115] = 1098,
- [1116] = 1098,
+ [1115] = 1115,
+ [1116] = 1089,
[1117] = 1117,
[1118] = 1118,
- [1119] = 1098,
- [1120] = 1120,
- [1121] = 1121,
+ [1119] = 1119,
+ [1120] = 571,
+ [1121] = 1088,
[1122] = 1106,
[1123] = 1123,
[1124] = 1124,
[1125] = 1125,
[1126] = 1126,
- [1127] = 1127,
- [1128] = 1128,
- [1129] = 1129,
+ [1127] = 1102,
+ [1128] = 1100,
+ [1129] = 1093,
[1130] = 1130,
- [1131] = 1110,
- [1132] = 1097,
+ [1131] = 1131,
+ [1132] = 1115,
[1133] = 1133,
- [1134] = 1134,
+ [1134] = 547,
[1135] = 1135,
[1136] = 1136,
[1137] = 1137,
- [1138] = 1096,
- [1139] = 1139,
- [1140] = 1139,
+ [1138] = 1138,
+ [1139] = 1137,
+ [1140] = 1140,
[1141] = 1141,
[1142] = 1142,
- [1143] = 1120,
- [1144] = 564,
- [1145] = 1145,
- [1146] = 517,
- [1147] = 1147,
- [1148] = 1111,
- [1149] = 1149,
- [1150] = 558,
+ [1143] = 1143,
+ [1144] = 1144,
+ [1145] = 1144,
+ [1146] = 553,
+ [1147] = 554,
+ [1148] = 1137,
+ [1149] = 555,
+ [1150] = 556,
[1151] = 1151,
[1152] = 1152,
[1153] = 1153,
[1154] = 1154,
- [1155] = 1155,
+ [1155] = 565,
[1156] = 1156,
[1157] = 1157,
- [1158] = 546,
+ [1158] = 1141,
[1159] = 1159,
[1160] = 1160,
- [1161] = 1153,
- [1162] = 1162,
- [1163] = 1163,
- [1164] = 1164,
- [1165] = 517,
- [1166] = 1151,
- [1167] = 1167,
+ [1161] = 1161,
+ [1162] = 531,
+ [1163] = 1136,
+ [1164] = 1137,
+ [1165] = 1165,
+ [1166] = 1142,
+ [1167] = 569,
[1168] = 1168,
- [1169] = 1169,
- [1170] = 516,
+ [1169] = 1161,
+ [1170] = 1156,
[1171] = 1171,
- [1172] = 1172,
- [1173] = 1168,
+ [1172] = 531,
+ [1173] = 537,
[1174] = 1174,
- [1175] = 1164,
- [1176] = 1164,
- [1177] = 1177,
- [1178] = 1178,
- [1179] = 571,
- [1180] = 1178,
- [1181] = 549,
- [1182] = 551,
- [1183] = 570,
- [1184] = 1184,
- [1185] = 1185,
+ [1175] = 1135,
+ [1176] = 1176,
+ [1177] = 546,
+ [1178] = 547,
+ [1179] = 537,
+ [1180] = 553,
+ [1181] = 554,
+ [1182] = 555,
+ [1183] = 556,
+ [1184] = 565,
+ [1185] = 1153,
[1186] = 1186,
- [1187] = 1164,
- [1188] = 1188,
+ [1187] = 1144,
+ [1188] = 1144,
[1189] = 1189,
- [1190] = 536,
- [1191] = 1152,
+ [1190] = 1151,
+ [1191] = 1191,
[1192] = 1192,
- [1193] = 570,
+ [1193] = 1193,
[1194] = 1194,
- [1195] = 1155,
- [1196] = 1162,
- [1197] = 546,
- [1198] = 1155,
+ [1195] = 546,
+ [1196] = 571,
+ [1197] = 1174,
+ [1198] = 1186,
[1199] = 1199,
- [1200] = 516,
- [1201] = 571,
- [1202] = 564,
- [1203] = 549,
- [1204] = 551,
- [1205] = 558,
- [1206] = 559,
- [1207] = 536,
- [1208] = 1189,
+ [1200] = 1200,
+ [1201] = 1201,
+ [1202] = 1202,
+ [1203] = 1203,
+ [1204] = 1204,
+ [1205] = 1205,
+ [1206] = 1206,
+ [1207] = 1203,
+ [1208] = 1208,
[1209] = 1209,
- [1210] = 1156,
- [1211] = 1211,
- [1212] = 1212,
- [1213] = 1169,
- [1214] = 1184,
- [1215] = 1155,
- [1216] = 559,
+ [1210] = 1210,
+ [1211] = 1086,
+ [1212] = 1201,
+ [1213] = 1213,
+ [1214] = 1214,
+ [1215] = 1110,
+ [1216] = 1126,
[1217] = 1217,
[1218] = 1218,
- [1219] = 1219,
- [1220] = 1100,
+ [1219] = 1159,
+ [1220] = 1220,
[1221] = 1221,
[1222] = 1222,
[1223] = 1223,
- [1224] = 1224,
- [1225] = 1223,
- [1226] = 1224,
- [1227] = 1227,
- [1228] = 1228,
+ [1224] = 1200,
+ [1225] = 1222,
+ [1226] = 1226,
+ [1227] = 1200,
+ [1228] = 1210,
[1229] = 1229,
- [1230] = 1147,
+ [1230] = 1230,
[1231] = 1231,
[1232] = 1232,
- [1233] = 1233,
+ [1233] = 1217,
[1234] = 1234,
- [1235] = 1235,
- [1236] = 1236,
+ [1235] = 1214,
+ [1236] = 1222,
[1237] = 1237,
- [1238] = 1159,
- [1239] = 1239,
+ [1238] = 1238,
+ [1239] = 1200,
[1240] = 1240,
- [1241] = 1239,
- [1242] = 1233,
+ [1241] = 1229,
+ [1242] = 1078,
[1243] = 1243,
[1244] = 1244,
- [1245] = 1245,
- [1246] = 1246,
- [1247] = 1247,
- [1248] = 1222,
- [1249] = 1239,
- [1250] = 1233,
+ [1245] = 1226,
+ [1246] = 1208,
+ [1247] = 1226,
+ [1248] = 1248,
+ [1249] = 1214,
+ [1250] = 1222,
[1251] = 1251,
- [1252] = 1246,
- [1253] = 1247,
+ [1252] = 1252,
+ [1253] = 1204,
[1254] = 1254,
- [1255] = 1246,
- [1256] = 1247,
+ [1255] = 1255,
+ [1256] = 1118,
[1257] = 1257,
- [1258] = 1128,
- [1259] = 1129,
+ [1258] = 1258,
+ [1259] = 1230,
[1260] = 1260,
- [1261] = 1236,
- [1262] = 1262,
+ [1261] = 1261,
+ [1262] = 1254,
[1263] = 1263,
- [1264] = 1245,
- [1265] = 1254,
- [1266] = 1266,
- [1267] = 1267,
+ [1264] = 1264,
+ [1265] = 1265,
+ [1266] = 1226,
+ [1267] = 1234,
[1268] = 1268,
- [1269] = 1269,
+ [1269] = 1214,
[1270] = 1270,
[1271] = 1271,
- [1272] = 1272,
- [1273] = 1273,
- [1274] = 1262,
- [1275] = 1260,
- [1276] = 1239,
- [1277] = 1233,
- [1278] = 1227,
- [1279] = 1267,
+ [1272] = 1232,
+ [1273] = 1237,
+ [1274] = 1274,
+ [1275] = 1275,
+ [1276] = 1276,
+ [1277] = 1277,
+ [1278] = 1278,
+ [1279] = 1279,
[1280] = 1280,
- [1281] = 1095,
+ [1281] = 1281,
[1282] = 1282,
[1283] = 1283,
[1284] = 1284,
- [1285] = 1218,
+ [1285] = 1285,
[1286] = 1286,
- [1287] = 1246,
- [1288] = 1247,
- [1289] = 1217,
+ [1287] = 1287,
+ [1288] = 1288,
+ [1289] = 1289,
[1290] = 1290,
- [1291] = 1291,
+ [1291] = 1289,
[1292] = 1292,
[1293] = 1293,
[1294] = 1294,
@@ -3806,98 +3748,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[1303] = 1303,
[1304] = 1304,
[1305] = 1305,
- [1306] = 1296,
+ [1306] = 1306,
[1307] = 1307,
[1308] = 1308,
- [1309] = 1309,
- [1310] = 1310,
+ [1309] = 1292,
+ [1310] = 1296,
[1311] = 1311,
[1312] = 1312,
[1313] = 1313,
- [1314] = 1314,
- [1315] = 1293,
+ [1314] = 1305,
+ [1315] = 1315,
[1316] = 1316,
- [1317] = 1294,
+ [1317] = 1306,
[1318] = 1318,
- [1319] = 1319,
- [1320] = 1297,
+ [1319] = 1303,
+ [1320] = 1304,
[1321] = 1321,
- [1322] = 1293,
- [1323] = 1323,
- [1324] = 1294,
- [1325] = 1301,
+ [1322] = 1322,
+ [1323] = 345,
+ [1324] = 1324,
+ [1325] = 1325,
[1326] = 1326,
- [1327] = 1302,
+ [1327] = 1327,
[1328] = 1328,
[1329] = 1329,
[1330] = 1330,
[1331] = 1331,
- [1332] = 351,
- [1333] = 1333,
- [1334] = 1334,
- [1335] = 1335,
- [1336] = 1291,
- [1337] = 1326,
- [1338] = 1338,
+ [1332] = 1281,
+ [1333] = 1289,
+ [1334] = 1292,
+ [1335] = 1312,
+ [1336] = 1297,
+ [1337] = 1337,
+ [1338] = 1285,
[1339] = 1339,
- [1340] = 1340,
+ [1340] = 1337,
[1341] = 1341,
- [1342] = 1304,
+ [1342] = 1325,
[1343] = 1343,
- [1344] = 1344,
- [1345] = 1345,
- [1346] = 1346,
- [1347] = 1347,
- [1348] = 1303,
- [1349] = 1349,
- [1350] = 1350,
- [1351] = 1351,
- [1352] = 1352,
- [1353] = 1353,
- [1354] = 1354,
- [1355] = 1297,
- [1356] = 1356,
- [1357] = 1303,
- [1358] = 1308,
+ [1344] = 1326,
+ [1345] = 1328,
+ [1346] = 1341,
+ [1347] = 1305,
+ [1348] = 1274,
+ [1349] = 1322,
+ [1350] = 1296,
+ [1351] = 1316,
+ [1352] = 1311,
+ [1353] = 1324,
+ [1354] = 1297,
+ [1355] = 1283,
+ [1356] = 1284,
+ [1357] = 1357,
+ [1358] = 1315,
[1359] = 1359,
[1360] = 1360,
- [1361] = 1314,
- [1362] = 1356,
+ [1361] = 1361,
+ [1362] = 1303,
[1363] = 1363,
- [1364] = 1364,
- [1365] = 1343,
- [1366] = 1363,
- [1367] = 1309,
- [1368] = 1314,
- [1369] = 1354,
- [1370] = 1360,
- [1371] = 1354,
+ [1364] = 1304,
+ [1365] = 1305,
+ [1366] = 1366,
+ [1367] = 1306,
+ [1368] = 1368,
+ [1369] = 1343,
+ [1370] = 1275,
+ [1371] = 1371,
[1372] = 1372,
[1373] = 1373,
[1374] = 1374,
[1375] = 1375,
[1376] = 1376,
- [1377] = 1338,
- [1378] = 1374,
- [1379] = 1312,
- [1380] = 1346,
+ [1377] = 1377,
+ [1378] = 1378,
+ [1379] = 1379,
+ [1380] = 1380,
[1381] = 1381,
- [1382] = 1311,
- [1383] = 1372,
- [1384] = 1310,
+ [1382] = 1382,
+ [1383] = 1383,
+ [1384] = 1384,
[1385] = 1385,
- [1386] = 1374,
- [1387] = 1372,
- [1388] = 1308,
- [1389] = 1373,
+ [1386] = 1386,
+ [1387] = 1387,
+ [1388] = 1388,
+ [1389] = 1389,
[1390] = 1390,
- [1391] = 1296,
- [1392] = 1381,
- [1393] = 1335,
- [1394] = 1296,
+ [1391] = 1391,
+ [1392] = 1392,
+ [1393] = 1393,
+ [1394] = 1394,
[1395] = 1395,
[1396] = 1396,
- [1397] = 1397,
+ [1397] = 534,
[1398] = 1398,
[1399] = 1399,
[1400] = 1400,
@@ -3906,8 +3848,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[1403] = 1403,
[1404] = 1404,
[1405] = 1405,
- [1406] = 1406,
- [1407] = 1407,
+ [1406] = 550,
+ [1407] = 551,
[1408] = 1408,
[1409] = 1409,
[1410] = 1410,
@@ -3915,9 +3857,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[1412] = 1412,
[1413] = 1413,
[1414] = 1414,
- [1415] = 1415,
+ [1415] = 1390,
[1416] = 1416,
- [1417] = 1417,
+ [1417] = 1392,
[1418] = 1418,
[1419] = 1419,
[1420] = 1420,
@@ -3930,24 +3872,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[1427] = 1427,
[1428] = 1428,
[1429] = 1429,
- [1430] = 539,
+ [1430] = 1430,
[1431] = 1431,
[1432] = 1432,
[1433] = 1433,
[1434] = 1434,
- [1435] = 1407,
+ [1435] = 1435,
[1436] = 1436,
[1437] = 1437,
[1438] = 1438,
[1439] = 1439,
[1440] = 1440,
[1441] = 1441,
- [1442] = 544,
- [1443] = 526,
+ [1442] = 1442,
+ [1443] = 1443,
[1444] = 1444,
- [1445] = 1416,
+ [1445] = 1445,
[1446] = 1446,
- [1447] = 1418,
+ [1447] = 1447,
[1448] = 1448,
[1449] = 1449,
[1450] = 1450,
@@ -3955,297 +3897,273 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[1452] = 1452,
[1453] = 1453,
[1454] = 1454,
- [1455] = 1433,
+ [1455] = 1455,
[1456] = 1456,
[1457] = 1457,
- [1458] = 1458,
+ [1458] = 1412,
[1459] = 1459,
- [1460] = 1434,
+ [1460] = 1460,
[1461] = 1461,
[1462] = 1462,
[1463] = 1463,
[1464] = 1464,
[1465] = 1465,
- [1466] = 1466,
+ [1466] = 1377,
[1467] = 1467,
[1468] = 1468,
- [1469] = 1469,
- [1470] = 1470,
- [1471] = 1441,
+ [1469] = 1433,
+ [1470] = 1436,
+ [1471] = 1471,
[1472] = 1472,
- [1473] = 1473,
- [1474] = 1474,
+ [1473] = 1438,
+ [1474] = 1431,
[1475] = 1475,
[1476] = 1476,
- [1477] = 1472,
+ [1477] = 1477,
[1478] = 1478,
- [1479] = 1469,
+ [1479] = 1479,
[1480] = 1480,
[1481] = 1481,
[1482] = 1482,
[1483] = 1483,
[1484] = 1484,
- [1485] = 1485,
+ [1485] = 1380,
[1486] = 1486,
- [1487] = 1487,
- [1488] = 1488,
- [1489] = 1489,
+ [1487] = 1410,
+ [1488] = 1414,
+ [1489] = 1422,
[1490] = 1490,
[1491] = 1491,
- [1492] = 1488,
+ [1492] = 1492,
[1493] = 1493,
- [1494] = 1494,
- [1495] = 1446,
- [1496] = 1409,
+ [1494] = 1444,
+ [1495] = 1374,
+ [1496] = 1496,
[1497] = 1497,
[1498] = 1498,
[1499] = 1499,
[1500] = 1500,
[1501] = 1501,
[1502] = 1502,
- [1503] = 1503,
- [1504] = 1406,
- [1505] = 1505,
- [1506] = 1506,
- [1507] = 1398,
- [1508] = 1399,
- [1509] = 1449,
+ [1503] = 1463,
+ [1504] = 1405,
+ [1505] = 1408,
+ [1506] = 1409,
+ [1507] = 1416,
+ [1508] = 1462,
+ [1509] = 1465,
[1510] = 1510,
- [1511] = 1400,
- [1512] = 1416,
- [1513] = 1513,
+ [1511] = 1511,
+ [1512] = 1512,
+ [1513] = 1418,
[1514] = 1514,
[1515] = 1515,
[1516] = 1516,
- [1517] = 1404,
- [1518] = 1408,
- [1519] = 1436,
- [1520] = 1437,
- [1521] = 1438,
- [1522] = 1522,
- [1523] = 1418,
- [1524] = 1524,
- [1525] = 1525,
- [1526] = 1526,
- [1527] = 1499,
- [1528] = 1402,
- [1529] = 1529,
- [1530] = 1401,
- [1531] = 1421,
- [1532] = 1422,
- [1533] = 1423,
- [1534] = 1428,
- [1535] = 1448,
- [1536] = 1450,
- [1537] = 1454,
- [1538] = 1457,
- [1539] = 1462,
- [1540] = 1463,
- [1541] = 1464,
- [1542] = 1542,
+ [1517] = 1517,
+ [1518] = 1518,
+ [1519] = 1519,
+ [1520] = 1520,
+ [1521] = 1521,
+ [1522] = 1396,
+ [1523] = 1523,
+ [1524] = 1478,
+ [1525] = 1372,
+ [1526] = 1371,
+ [1527] = 1510,
+ [1528] = 1528,
+ [1529] = 1376,
+ [1530] = 1515,
+ [1531] = 1516,
+ [1532] = 1517,
+ [1533] = 1533,
+ [1534] = 1390,
+ [1535] = 1480,
+ [1536] = 1392,
+ [1537] = 1537,
+ [1538] = 1384,
+ [1539] = 1386,
+ [1540] = 1540,
+ [1541] = 1395,
+ [1542] = 1403,
[1543] = 1543,
- [1544] = 1506,
- [1545] = 1545,
+ [1544] = 1391,
+ [1545] = 1428,
[1546] = 1546,
- [1547] = 1547,
- [1548] = 1548,
+ [1547] = 1432,
+ [1548] = 1492,
[1549] = 1549,
- [1550] = 1550,
- [1551] = 1551,
- [1552] = 1552,
- [1553] = 1529,
- [1554] = 1554,
- [1555] = 1451,
- [1556] = 1552,
- [1557] = 1557,
+ [1550] = 1537,
+ [1551] = 1521,
+ [1552] = 1518,
+ [1553] = 1519,
+ [1554] = 1520,
+ [1555] = 1439,
+ [1556] = 1452,
+ [1557] = 1459,
[1558] = 1558,
- [1559] = 1559,
- [1560] = 1560,
+ [1559] = 1270,
+ [1560] = 1533,
[1561] = 1561,
- [1562] = 1403,
- [1563] = 1444,
- [1564] = 1405,
- [1565] = 1410,
- [1566] = 1411,
- [1567] = 1516,
+ [1562] = 1562,
+ [1563] = 1563,
+ [1564] = 1427,
+ [1565] = 1434,
+ [1566] = 1566,
+ [1567] = 1437,
[1568] = 1568,
- [1569] = 1395,
- [1570] = 1413,
- [1571] = 1546,
+ [1569] = 1442,
+ [1570] = 1570,
+ [1571] = 1499,
[1572] = 1572,
- [1573] = 1547,
+ [1573] = 1481,
[1574] = 1574,
- [1575] = 1500,
+ [1575] = 1575,
[1576] = 1576,
- [1577] = 1577,
- [1578] = 1548,
- [1579] = 1503,
+ [1577] = 1496,
+ [1578] = 1486,
+ [1579] = 1426,
[1580] = 1580,
- [1581] = 1581,
- [1582] = 1582,
- [1583] = 1583,
- [1584] = 1584,
- [1585] = 1414,
- [1586] = 1415,
- [1587] = 1587,
- [1588] = 1513,
- [1589] = 1417,
- [1590] = 1590,
- [1591] = 1419,
- [1592] = 1549,
- [1593] = 1550,
- [1594] = 1551,
- [1595] = 1424,
- [1596] = 1425,
- [1597] = 1429,
- [1598] = 1577,
- [1599] = 1568,
- [1600] = 1600,
- [1601] = 1601,
- [1602] = 1461,
- [1603] = 1603,
- [1604] = 1604,
- [1605] = 1605,
- [1606] = 1606,
- [1607] = 1475,
- [1608] = 1524,
- [1609] = 1609,
- [1610] = 1525,
- [1611] = 1572,
- [1612] = 1612,
- [1613] = 1613,
- [1614] = 1614,
- [1615] = 1240,
- [1616] = 1420,
- [1617] = 1426,
- [1618] = 1456,
+ [1581] = 1390,
+ [1582] = 1392,
+ [1583] = 1500,
+ [1584] = 1566,
+ [1585] = 1501,
+ [1586] = 1586,
+ [1587] = 1441,
+ [1588] = 1588,
+ [1589] = 1450,
+ [1590] = 1373,
+ [1591] = 1497,
+ [1592] = 1375,
+ [1593] = 1378,
+ [1594] = 1404,
+ [1595] = 1493,
+ [1596] = 1514,
+ [1597] = 1456,
+ [1598] = 1563,
+ [1599] = 1580,
+ [1600] = 1460,
+ [1601] = 1413,
+ [1602] = 1471,
+ [1603] = 1472,
+ [1604] = 1475,
+ [1605] = 1502,
+ [1606] = 1586,
+ [1607] = 1419,
+ [1608] = 1608,
+ [1609] = 1420,
+ [1610] = 1484,
+ [1611] = 1425,
+ [1612] = 1449,
+ [1613] = 1512,
+ [1614] = 1467,
+ [1615] = 1615,
+ [1616] = 1616,
+ [1617] = 1617,
+ [1618] = 1618,
[1619] = 1619,
- [1620] = 1501,
- [1621] = 1458,
- [1622] = 1465,
- [1623] = 1502,
- [1624] = 1416,
- [1625] = 1432,
- [1626] = 1480,
- [1627] = 1396,
- [1628] = 1614,
- [1629] = 1418,
- [1630] = 1630,
- [1631] = 1631,
- [1632] = 1440,
- [1633] = 1466,
- [1634] = 1467,
+ [1620] = 1620,
+ [1621] = 1621,
+ [1622] = 1622,
+ [1623] = 1623,
+ [1624] = 1624,
+ [1625] = 1625,
+ [1626] = 1626,
+ [1627] = 1627,
+ [1628] = 1628,
+ [1629] = 1629,
+ [1630] = 1622,
+ [1631] = 1240,
+ [1632] = 1632,
+ [1633] = 1619,
+ [1634] = 1634,
[1635] = 1635,
- [1636] = 1487,
- [1637] = 1453,
- [1638] = 1459,
- [1639] = 1639,
+ [1636] = 1622,
+ [1637] = 1637,
+ [1638] = 1638,
+ [1639] = 1638,
[1640] = 1640,
- [1641] = 1641,
+ [1641] = 1637,
[1642] = 1642,
[1643] = 1643,
[1644] = 1644,
[1645] = 1645,
[1646] = 1646,
- [1647] = 1647,
- [1648] = 1648,
- [1649] = 1649,
- [1650] = 1650,
+ [1647] = 1621,
+ [1648] = 1637,
+ [1649] = 1644,
+ [1650] = 1617,
[1651] = 1651,
[1652] = 1652,
[1653] = 1653,
- [1654] = 1651,
- [1655] = 1653,
+ [1654] = 1654,
+ [1655] = 1623,
[1656] = 1656,
- [1657] = 1657,
+ [1657] = 1651,
[1658] = 1658,
[1659] = 1659,
[1660] = 1660,
[1661] = 1661,
- [1662] = 1657,
- [1663] = 1663,
- [1664] = 1648,
+ [1662] = 1662,
+ [1663] = 1644,
+ [1664] = 1664,
[1665] = 1665,
- [1666] = 1666,
+ [1666] = 1623,
[1667] = 1667,
- [1668] = 1650,
- [1669] = 1669,
- [1670] = 1646,
- [1671] = 1663,
- [1672] = 1672,
- [1673] = 1673,
+ [1668] = 1668,
+ [1669] = 1652,
+ [1670] = 1617,
+ [1671] = 1619,
+ [1672] = 1660,
+ [1673] = 1645,
[1674] = 1674,
[1675] = 1675,
- [1676] = 1251,
+ [1676] = 1676,
[1677] = 1677,
- [1678] = 1643,
- [1679] = 1653,
+ [1678] = 1658,
+ [1679] = 1624,
[1680] = 1680,
- [1681] = 1681,
+ [1681] = 1617,
[1682] = 1682,
[1683] = 1683,
- [1684] = 1643,
+ [1684] = 1684,
[1685] = 1685,
[1686] = 1686,
- [1687] = 1644,
- [1688] = 1688,
- [1689] = 1689,
- [1690] = 1690,
- [1691] = 1651,
- [1692] = 1692,
- [1693] = 1652,
- [1694] = 1647,
- [1695] = 1648,
- [1696] = 1644,
+ [1687] = 1687,
+ [1688] = 1635,
+ [1689] = 1682,
+ [1690] = 1675,
+ [1691] = 1686,
+ [1692] = 1635,
+ [1693] = 1693,
+ [1694] = 1694,
+ [1695] = 1694,
+ [1696] = 1682,
[1697] = 1697,
- [1698] = 1698,
- [1699] = 1699,
- [1700] = 1700,
- [1701] = 1652,
- [1702] = 1661,
- [1703] = 1642,
- [1704] = 1704,
- [1705] = 1705,
- [1706] = 1704,
- [1707] = 1707,
- [1708] = 1704,
- [1709] = 1709,
- [1710] = 1710,
- [1711] = 1642,
- [1712] = 1686,
+ [1698] = 1635,
+ [1699] = 1637,
+ [1700] = 1637,
+ [1701] = 1623,
+ [1702] = 1682,
+ [1703] = 1632,
+ [1704] = 1619,
+ [1705] = 1632,
+ [1706] = 1624,
+ [1707] = 1619,
+ [1708] = 1644,
+ [1709] = 1623,
+ [1710] = 1632,
+ [1711] = 1711,
+ [1712] = 1677,
[1713] = 1713,
- [1714] = 1704,
+ [1714] = 1622,
[1715] = 1715,
- [1716] = 1643,
+ [1716] = 1682,
[1717] = 1717,
- [1718] = 1661,
- [1719] = 1644,
- [1720] = 1647,
- [1721] = 1685,
- [1722] = 1648,
- [1723] = 1643,
- [1724] = 1639,
- [1725] = 1652,
- [1726] = 1661,
- [1727] = 1647,
- [1728] = 1648,
- [1729] = 1666,
- [1730] = 1730,
- [1731] = 1688,
- [1732] = 1653,
- [1733] = 1651,
- [1734] = 1652,
- [1735] = 1642,
- [1736] = 1736,
- [1737] = 1737,
- [1738] = 1647,
- [1739] = 1739,
- [1740] = 1740,
- [1741] = 1661,
- [1742] = 1682,
- [1743] = 1739,
- [1744] = 1651,
- [1745] = 1710,
+ [1718] = 1632,
+ [1719] = 1717,
+ [1720] = 1644,
+ [1721] = 1624,
};
static TSCharacterRange extras_character_set_1[] = {
@@ -4268,1867 +4186,1733 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) {
eof = lexer->eof(lexer);
switch (state) {
case 0:
- if (eof) ADVANCE(145);
+ if (eof) ADVANCE(126);
ADVANCE_MAP(
- '!', 253,
- '"', 186,
- '#', 4,
- '$', 300,
- '%', 241,
- '&', 228,
- '\'', 187,
- '(', 153,
- ')', 155,
- '*', 148,
- '+', 235,
- ',', 151,
- '-', 237,
- '.', 182,
- '/', 280,
- '0', 285,
- ':', 156,
- ';', 154,
- '<', 172,
- '=', 159,
- '>', 178,
- '?', 31,
- '@', 304,
- '[', 161,
- '\\', 99,
- ']', 162,
- '^', 231,
- '`', 278,
- 's', 298,
- '{', 150,
- '|', 232,
- '}', 152,
- '~', 254,
+ '!', 226,
+ '"', 159,
+ '#', 3,
+ '$', 273,
+ '%', 214,
+ '&', 201,
+ '\'', 160,
+ '(', 134,
+ ')', 136,
+ '*', 129,
+ '+', 208,
+ ',', 132,
+ '-', 210,
+ '.', 155,
+ '/', 253,
+ '0', 258,
+ ':', 137,
+ ';', 135,
+ '<', 147,
+ '=', 140,
+ '>', 151,
+ '?', 28,
+ '@', 277,
+ '[', 142,
+ '\\', 80,
+ ']', 143,
+ '^', 204,
+ '`', 251,
+ 's', 271,
+ '{', 131,
+ '|', 205,
+ '}', 133,
+ '~', 227,
);
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(142);
- if (lookahead > '@') ADVANCE(302);
+ 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') ADVANCE(305);
+ if (lookahead == '\n') ADVANCE(278);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') ADVANCE(1);
END_STATE();
case 2:
- if (lookahead == '\n') SKIP(2);
- if (lookahead == '/') ADVANCE(164);
- if (lookahead == '<') ADVANCE(166);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(165);
- if (lookahead != 0) ADVANCE(163);
+ 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 == '\n') SKIP(35);
- if (lookahead == '/') ADVANCE(24);
- if (lookahead == '[') ADVANCE(80);
- if (lookahead == '\\') ADVANCE(141);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(281);
- if (lookahead != 0) ADVANCE(282);
+ 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(146);
- if (lookahead == '\\') ADVANCE(100);
- if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(303);
+ ADVANCE_MAP(
+ '!', 225,
+ '"', 159,
+ '#', 75,
+ '\'', 160,
+ '(', 134,
+ '*', 128,
+ '+', 207,
+ ',', 132,
+ '-', 209,
+ '.', 27,
+ '/', 211,
+ '0', 258,
+ ';', 135,
+ '<', 145,
+ '@', 277,
+ '[', 142,
+ '\\', 82,
+ '`', 251,
+ 's', 271,
+ '{', 131,
+ '}', 133,
+ '~', 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:
ADVANCE_MAP(
- '!', 252,
- '"', 186,
- '#', 79,
- '\'', 187,
- '(', 153,
- '*', 147,
- '+', 234,
- ',', 151,
- '-', 236,
- '.', 30,
- '/', 238,
- '0', 285,
- ';', 154,
- '<', 176,
- '@', 304,
- '[', 161,
- '\\', 101,
- '`', 278,
- 's', 298,
- '{', 150,
- '}', 152,
- '~', 254,
+ '!', 225,
+ '"', 159,
+ '#', 75,
+ '\'', 160,
+ '(', 134,
+ '+', 207,
+ '-', 209,
+ '.', 156,
+ '/', 211,
+ '0', 258,
+ ':', 137,
+ '<', 145,
+ '>', 150,
+ '@', 277,
+ '[', 142,
+ '\\', 82,
+ '`', 251,
+ '{', 131,
+ '~', 227,
);
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
+ 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(302);
+ (lookahead < '{' || '~' < lookahead)) ADVANCE(275);
END_STATE();
case 6:
ADVANCE_MAP(
- '!', 252,
- '"', 186,
- '#', 79,
- '\'', 187,
- '(', 153,
- '+', 234,
- '-', 236,
- '.', 183,
- '/', 238,
- '0', 285,
- ':', 156,
- '<', 176,
- '>', 177,
- '@', 304,
- '[', 161,
- '\\', 101,
- '`', 278,
- '{', 150,
- '~', 254,
+ '!', 73,
+ '"', 159,
+ '#', 75,
+ '%', 214,
+ '&', 201,
+ '\'', 160,
+ '(', 134,
+ ')', 136,
+ '*', 129,
+ '+', 208,
+ ',', 132,
+ '-', 210,
+ '.', 156,
+ '/', 212,
+ '0', 258,
+ ':', 137,
+ ';', 135,
+ '<', 148,
+ '=', 140,
+ '>', 151,
+ '?', 28,
+ '@', 277,
+ '[', 142,
+ '\\', 82,
+ ']', 143,
+ '^', 204,
+ '`', 251,
+ '{', 131,
+ '|', 205,
+ '}', 133,
);
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
+ if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259);
if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6);
if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(302);
+ (lookahead < '{' || '~' < lookahead)) ADVANCE(275);
END_STATE();
case 7:
ADVANCE_MAP(
- '!', 75,
- '"', 186,
- '#', 79,
- '%', 241,
- '&', 228,
- '\'', 187,
- '(', 153,
- ')', 155,
- '*', 148,
- '+', 235,
- ',', 151,
- '-', 237,
- '.', 183,
- '/', 239,
- '0', 285,
- ':', 156,
- ';', 154,
- '<', 173,
- '=', 159,
- '>', 178,
- '?', 31,
- '@', 304,
- '[', 161,
- '\\', 101,
- ']', 162,
- '^', 231,
- '`', 278,
- '{', 150,
- '|', 232,
- '}', 152,
+ '!', 73,
+ '%', 213,
+ '&', 202,
+ '(', 134,
+ ')', 136,
+ '*', 130,
+ '+', 207,
+ ',', 132,
+ '-', 209,
+ '.', 154,
+ '/', 211,
+ ':', 137,
+ ';', 135,
+ '<', 149,
+ '=', 74,
+ '>', 152,
+ '?', 29,
+ '[', 142,
+ '\\', 82,
+ ']', 143,
+ '^', 203,
+ '`', 251,
+ '{', 131,
+ '|', 206,
+ '}', 133,
);
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7);
+ if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(256);
+ if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8);
if (lookahead > '#' &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(302);
+ (lookahead < '%' || '@' < lookahead) &&
+ (lookahead < '`' || '~' < lookahead)) ADVANCE(275);
END_STATE();
case 8:
ADVANCE_MAP(
- '!', 75,
- '%', 240,
- '&', 229,
- '(', 153,
- ')', 155,
- '*', 149,
- '+', 234,
- ',', 151,
- '-', 236,
- '.', 181,
- '/', 238,
- ':', 156,
- ';', 154,
- '<', 174,
- '=', 158,
- '>', 179,
- '?', 32,
- '[', 161,
- '\\', 101,
- ']', 162,
- '^', 230,
- '`', 278,
- '{', 150,
- '|', 233,
- '}', 152,
+ '!', 73,
+ '%', 213,
+ '&', 202,
+ '(', 134,
+ ')', 136,
+ '*', 130,
+ '+', 207,
+ ',', 132,
+ '-', 209,
+ '.', 154,
+ '/', 211,
+ ':', 137,
+ ';', 135,
+ '<', 149,
+ '=', 74,
+ '>', 152,
+ '?', 29,
+ '[', 142,
+ '\\', 82,
+ ']', 143,
+ '^', 203,
+ '`', 251,
+ '{', 131,
+ '|', 206,
+ '}', 133,
);
if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8);
if (lookahead > '#' &&
(lookahead < '%' || '@' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(302);
+ (lookahead < '{' || '~' < lookahead)) ADVANCE(275);
END_STATE();
case 9:
ADVANCE_MAP(
- '!', 75,
- '%', 240,
- '&', 229,
- '(', 153,
- ')', 155,
- '*', 149,
- '+', 234,
- ',', 151,
- '-', 236,
- '.', 181,
- '/', 238,
- ':', 156,
- ';', 154,
- '<', 174,
- '=', 76,
- '>', 179,
- '?', 32,
- '[', 161,
- '\\', 101,
- ']', 162,
- '^', 230,
- '`', 278,
- '{', 150,
- '|', 233,
- '}', 152,
+ '"', 159,
+ '#', 75,
+ '&', 13,
+ '\'', 160,
+ '(', 134,
+ '*', 128,
+ '.', 156,
+ '/', 21,
+ '0', 258,
+ '<', 146,
+ '@', 277,
+ '[', 142,
+ '\\', 82,
+ 's', 271,
+ '{', 131,
);
- if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(283);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10);
+ if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259);
+ if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9);
if (lookahead > '#' &&
(lookahead < '%' || '@' < lookahead) &&
- (lookahead < '`' || '~' < lookahead)) ADVANCE(302);
+ (lookahead < '[' || '^' < lookahead) &&
+ lookahead != '`' &&
+ (lookahead < '{' || '~' < lookahead)) ADVANCE(275);
END_STATE();
case 10:
- ADVANCE_MAP(
- '!', 75,
- '%', 240,
- '&', 229,
- '(', 153,
- ')', 155,
- '*', 149,
- '+', 234,
- ',', 151,
- '-', 236,
- '.', 181,
- '/', 238,
- ':', 156,
- ';', 154,
- '<', 174,
- '=', 76,
- '>', 179,
- '?', 32,
- '[', 161,
- '\\', 101,
- ']', 162,
- '^', 230,
- '`', 278,
- '{', 150,
- '|', 233,
- '}', 152,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(302);
+ if (lookahead == '"') ADVANCE(159);
+ if (lookahead == '&') ADVANCE(14);
+ if (lookahead == '/') ADVANCE(162);
+ if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(161);
+ if (lookahead != 0) ADVANCE(163);
END_STATE();
case 11:
- ADVANCE_MAP(
- '"', 186,
- '#', 79,
- '&', 16,
- '\'', 187,
- '(', 153,
- '*', 147,
- '.', 183,
- '/', 24,
- '0', 285,
- '<', 171,
- '@', 304,
- '[', 161,
- '\\', 101,
- 's', 298,
- '{', 150,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
+ if (lookahead == '"') ADVANCE(159);
+ if (lookahead == '/') ADVANCE(21);
if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead) &&
- lookahead != '`' &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(302);
END_STATE();
case 12:
- if (lookahead == '"') ADVANCE(186);
- if (lookahead == '&') ADVANCE(17);
- if (lookahead == '/') ADVANCE(189);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(188);
- if (lookahead != 0) ADVANCE(190);
+ 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:
- ADVANCE_MAP(
- '"', 186,
- '\'', 187,
- '.', 181,
- '/', 25,
- ':', 156,
- '<', 170,
- '=', 157,
- '>', 177,
- '\\', 101,
- '{', 150,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13);
- if (lookahead == '$' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- lookahead == '_' ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(294);
- if (lookahead > '~') ADVANCE(302);
+ if (lookahead == '#') ADVANCE(94);
+ if (('A' <= lookahead && lookahead <= 'Z') ||
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72);
END_STATE();
case 14:
- if (lookahead == '"') ADVANCE(186);
- if (lookahead == '/') ADVANCE(24);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14);
+ if (lookahead == '#') ADVANCE(94);
+ if (('A' <= lookahead && lookahead <= 'Z') ||
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72);
+ if (lookahead != 0) ADVANCE(163);
END_STATE();
case 15:
- if (lookahead == '"') ADVANCE(186);
- if (lookahead == '/') ADVANCE(257);
- if (lookahead == '\\') ADVANCE(102);
- if (lookahead == '\n' ||
- lookahead == '\r') SKIP(14);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(260);
- if (lookahead != 0) ADVANCE(262);
+ if (lookahead == '#') ADVANCE(94);
+ if (('A' <= lookahead && lookahead <= 'Z') ||
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72);
+ if (lookahead != 0) ADVANCE(169);
END_STATE();
case 16:
- if (lookahead == '#') ADVANCE(113);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74);
+ 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(113);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74);
- if (lookahead != 0) ADVANCE(190);
+ 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(113);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74);
- if (lookahead != 0) ADVANCE(196);
+ if (lookahead == '&') ADVANCE(15);
+ 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(103);
- if (lookahead == '/') ADVANCE(24);
- if (lookahead == '\\') ADVANCE(102);
- if (lookahead == '`') ADVANCE(278);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20);
+ 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(103);
- if (lookahead == '/') ADVANCE(24);
- if (lookahead == '`') ADVANCE(278);
- if (set_contains(extras_character_set_1, 10, 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(18);
- if (lookahead == '\'') ADVANCE(187);
- if (lookahead == '/') ADVANCE(195);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(194);
- if (lookahead != 0) ADVANCE(196);
+ if (lookahead == '*') ADVANCE(24);
+ if (lookahead == '/') ADVANCE(250);
END_STATE();
case 22:
- if (lookahead == '\'') ADVANCE(187);
- if (lookahead == '/') ADVANCE(24);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(22);
+ if (lookahead == '*') ADVANCE(24);
+ if (lookahead == '/') ADVANCE(250);
+ if (lookahead == '>') ADVANCE(158);
END_STATE();
case 23:
- if (lookahead == '\'') ADVANCE(187);
- if (lookahead == '/') ADVANCE(263);
- if (lookahead == '\\') ADVANCE(102);
- if (lookahead == '\n' ||
- lookahead == '\r') SKIP(22);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(266);
- if (lookahead != 0) ADVANCE(268);
+ if (lookahead == '*') ADVANCE(23);
+ if (lookahead == '/') ADVANCE(247);
+ if (lookahead != 0) ADVANCE(24);
END_STATE();
case 24:
- if (lookahead == '*') ADVANCE(27);
- if (lookahead == '/') ADVANCE(277);
+ if (lookahead == '*') ADVANCE(23);
+ if (lookahead != 0) ADVANCE(24);
END_STATE();
case 25:
- if (lookahead == '*') ADVANCE(27);
- if (lookahead == '/') ADVANCE(277);
- if (lookahead == '>') ADVANCE(185);
+ if (lookahead == '*') ADVANCE(164);
+ if (lookahead == '#' ||
+ ('A' <= lookahead && lookahead <= 'Z') ||
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
+ if (lookahead != 0) ADVANCE(165);
END_STATE();
case 26:
- if (lookahead == '*') ADVANCE(26);
- if (lookahead == '/') ADVANCE(274);
- if (lookahead != 0) ADVANCE(27);
+ if (lookahead == '*') ADVANCE(170);
+ if (lookahead == '#' ||
+ ('A' <= lookahead && lookahead <= 'Z') ||
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24);
+ if (lookahead != 0) ADVANCE(171);
END_STATE();
case 27:
- if (lookahead == '*') ADVANCE(26);
- if (lookahead != 0) ADVANCE(27);
+ if (lookahead == '.') ADVANCE(30);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264);
END_STATE();
case 28:
- if (lookahead == '*') ADVANCE(191);
- if (lookahead == '#' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
- if (lookahead != 0) ADVANCE(192);
+ if (lookahead == '.') ADVANCE(174);
+ if (lookahead == '?') ADVANCE(224);
END_STATE();
case 29:
- if (lookahead == '*') ADVANCE(197);
- if (lookahead == '#' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
- if (lookahead != 0) ADVANCE(198);
+ if (lookahead == '.') ADVANCE(174);
+ if (lookahead == '?') ADVANCE(223);
END_STATE();
case 30:
- if (lookahead == '.') ADVANCE(33);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(291);
+ if (lookahead == '.') ADVANCE(190);
END_STATE();
case 31:
- if (lookahead == '.') ADVANCE(201);
- if (lookahead == '?') ADVANCE(251);
+ if (lookahead == '.') ADVANCE(154);
+ if (lookahead == '/') ADVANCE(22);
+ if (lookahead == ':') ADVANCE(137);
+ if (lookahead == '=') ADVANCE(138);
+ if (lookahead == '>') ADVANCE(150);
+ if (lookahead == '\\') ADVANCE(82);
+ if (lookahead == '{') ADVANCE(131);
+ 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(201);
- if (lookahead == '?') ADVANCE(250);
+ if (lookahead == '/') ADVANCE(253);
+ if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33);
END_STATE();
case 33:
- if (lookahead == '.') ADVANCE(217);
+ if (lookahead == '/') ADVANCE(21);
+ if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33);
END_STATE();
case 34:
- if (lookahead == '/') ADVANCE(280);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(35);
+ if (lookahead == ';') ADVANCE(144);
END_STATE();
case 35:
- if (lookahead == '/') ADVANCE(24);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(35);
+ if (lookahead == ';') ADVANCE(144);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
END_STATE();
case 36:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35);
END_STATE();
case 37:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36);
END_STATE();
case 38:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
END_STATE();
case 39:
- if (lookahead == ';') ADVANCE(169);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
+ if (lookahead == ';') ADVANCE(144);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34);
END_STATE();
case 40:
- if (lookahead == ';') ADVANCE(169);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
+ if (lookahead == ';') ADVANCE(144);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39);
END_STATE();
case 41:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40);
END_STATE();
case 42:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(41);
END_STATE();
case 43:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(42);
END_STATE();
case 44:
- if (lookahead == ';') ADVANCE(169);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43);
+ if (lookahead == ';') ADVANCE(144);
+ if (('A' <= lookahead && lookahead <= 'Z') ||
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
END_STATE();
case 45:
- if (lookahead == ';') ADVANCE(169);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44);
+ if (lookahead == ';') ADVANCE(144);
+ if (('A' <= lookahead && lookahead <= 'Z') ||
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 46:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45);
END_STATE();
case 47:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(46);
END_STATE();
case 48:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 49:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 50:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(49);
END_STATE();
case 51:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(50);
END_STATE();
case 52:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(51);
END_STATE();
case 53:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(52);
END_STATE();
case 54:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(53);
END_STATE();
case 55:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(54);
END_STATE();
case 56:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(55);
END_STATE();
case 57:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(56);
END_STATE();
case 58:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(57);
END_STATE();
case 59:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(58);
END_STATE();
case 60:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(59);
END_STATE();
case 61:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(60);
END_STATE();
case 62:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(61);
END_STATE();
case 63:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(62);
END_STATE();
case 64:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(63);
END_STATE();
case 65:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(64);
END_STATE();
case 66:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(65);
END_STATE();
case 67:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(66);
END_STATE();
case 68:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(67);
END_STATE();
case 69:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(68);
END_STATE();
case 70:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(69);
END_STATE();
case 71:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(70);
END_STATE();
case 72:
- if (lookahead == ';') ADVANCE(169);
+ if (lookahead == ';') ADVANCE(144);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(71);
END_STATE();
case 73:
- if (lookahead == ';') ADVANCE(169);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72);
+ if (lookahead == '=') ADVANCE(220);
END_STATE();
case 74:
- if (lookahead == ';') ADVANCE(169);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73);
+ if (lookahead == '=') ADVANCE(218);
END_STATE();
case 75:
- if (lookahead == '=') ADVANCE(247);
+ if (lookahead == '\\') ADVANCE(81);
+ if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276);
END_STATE();
case 76:
- if (lookahead == '=') ADVANCE(245);
+ if (lookahead == '\\') ADVANCE(121);
+ if (lookahead == ']') ADVANCE(255);
+ if (lookahead != 0 &&
+ lookahead != '\n') ADVANCE(76);
END_STATE();
case 77:
- if (lookahead == '>') ADVANCE(167);
+ if (lookahead == 'e') ADVANCE(79);
END_STATE();
case 78:
- if (lookahead == '>') ADVANCE(168);
+ if (lookahead == 'g') ADVANCE(77);
+ if (('\t' <= lookahead && lookahead <= '\r') ||
+ lookahead == ' ') ADVANCE(78);
END_STATE();
case 79:
- if (lookahead == '\\') ADVANCE(100);
- if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(303);
+ if (lookahead == 't') ADVANCE(1);
END_STATE();
case 80:
- if (lookahead == '\\') ADVANCE(140);
- if (lookahead == ']') ADVANCE(282);
- if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(80);
+ 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:
- if (lookahead == 'a') ADVANCE(96);
+ if (lookahead == 'u') ADVANCE(86);
END_STATE();
case 82:
- if (lookahead == 'a') ADVANCE(97);
+ if (lookahead == 'u') ADVANCE(87);
END_STATE();
case 83:
- if (lookahead == 'e') ADVANCE(91);
+ 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:
- if (lookahead == 'e') ADVANCE(77);
+ if (lookahead == '{') ADVANCE(252);
END_STATE();
case 85:
- if (lookahead == 'e') ADVANCE(95);
+ if (lookahead == '{') ADVANCE(105);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116);
END_STATE();
case 86:
- if (lookahead == 'e') ADVANCE(78);
+ if (lookahead == '{') ADVANCE(109);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117);
END_STATE();
case 87:
- if (lookahead == 'e') ADVANCE(92);
+ if (lookahead == '{') ADVANCE(110);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118);
END_STATE();
case 88:
- if (lookahead == 'g') ADVANCE(85);
- if (('\t' <= lookahead && lookahead <= '\r') ||
- lookahead == ' ') ADVANCE(88);
+ if (lookahead == '{') ADVANCE(112);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108);
END_STATE();
case 89:
- if (lookahead == 'l') ADVANCE(81);
+ if (lookahead == '}') ADVANCE(275);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89);
END_STATE();
case 90:
- if (lookahead == 'l') ADVANCE(82);
+ if (lookahead == '}') ADVANCE(276);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90);
END_STATE();
case 91:
- if (lookahead == 'm') ADVANCE(93);
+ if (lookahead == '}') ADVANCE(242);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91);
END_STATE();
case 92:
- if (lookahead == 'm') ADVANCE(94);
+ if (lookahead == '}') ADVANCE(243);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92);
END_STATE();
case 93:
- if (lookahead == 'p') ADVANCE(89);
+ if (lookahead == '+' ||
+ lookahead == '-') ADVANCE(100);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265);
END_STATE();
case 94:
- if (lookahead == 'p') ADVANCE(90);
+ if (lookahead == 'X' ||
+ lookahead == 'x') ADVANCE(107);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
END_STATE();
case 95:
- if (lookahead == 't') ADVANCE(1);
+ if (lookahead == '0' ||
+ lookahead == '1') ADVANCE(261);
END_STATE();
case 96:
- if (lookahead == 't') ADVANCE(84);
+ if (('0' <= lookahead && lookahead <= '7')) ADVANCE(262);
END_STATE();
case 97:
- if (lookahead == 't') ADVANCE(86);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259);
END_STATE();
case 98:
- if (lookahead == 't') ADVANCE(87);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264);
END_STATE();
case 99:
- if (lookahead == 'u') ADVANCE(104);
- if (lookahead == 'x') ADVANCE(130);
- if (lookahead == '\r' ||
- lookahead == '?') ADVANCE(271);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(273);
- if (lookahead != 0) ADVANCE(269);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260);
END_STATE();
case 100:
- if (lookahead == 'u') ADVANCE(105);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265);
END_STATE();
case 101:
- if (lookahead == 'u') ADVANCE(106);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275);
END_STATE();
case 102:
- if (lookahead == 'u') ADVANCE(107);
- if (lookahead == 'x') ADVANCE(130);
- if (lookahead == '\r' ||
- lookahead == '?') ADVANCE(271);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(273);
- if (lookahead != 0) ADVANCE(269);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276);
END_STATE();
case 103:
- if (lookahead == '{') ADVANCE(279);
+ if (('0' <= lookahead && lookahead <= '9') ||
+ ('A' <= lookahead && lookahead <= 'F') ||
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(242);
END_STATE();
case 104:
- if (lookahead == '{') ADVANCE(124);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263);
END_STATE();
case 105:
- if (lookahead == '{') ADVANCE(128);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92);
END_STATE();
case 106:
- if (lookahead == '{') ADVANCE(129);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243);
END_STATE();
case 107:
- if (lookahead == '{') ADVANCE(131);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43);
END_STATE();
case 108:
- if (lookahead == '}') ADVANCE(302);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111);
END_STATE();
case 109:
- if (lookahead == '}') ADVANCE(303);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90);
END_STATE();
case 110:
- if (lookahead == '}') ADVANCE(269);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89);
END_STATE();
case 111:
- if (lookahead == '}') ADVANCE(270);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103);
END_STATE();
case 112:
- if (lookahead == '+' ||
- lookahead == '-') ADVANCE(119);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(292);
- END_STATE();
- case 113:
- if (lookahead == 'X' ||
- lookahead == 'x') ADVANCE(126);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
- END_STATE();
- case 114:
- if (lookahead == '0' ||
- lookahead == '1') ADVANCE(288);
- END_STATE();
- case 115:
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(289);
- END_STATE();
- case 116:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(286);
- END_STATE();
- case 117:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(291);
- END_STATE();
- case 118:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287);
- END_STATE();
- case 119:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(292);
- END_STATE();
- case 120:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(302);
- END_STATE();
- case 121:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303);
- END_STATE();
- case 122:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(269);
- END_STATE();
- case 123:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(290);
- END_STATE();
- case 124:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111);
- END_STATE();
- case 125:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270);
- END_STATE();
- case 126:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45);
- END_STATE();
- case 127:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130);
- END_STATE();
- case 128:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109);
- END_STATE();
- case 129:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108);
- END_STATE();
- case 130:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122);
- END_STATE();
- case 131:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91);
END_STATE();
- case 132:
+ case 113:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106);
END_STATE();
- case 133:
+ case 114:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102);
END_STATE();
- case 134:
+ case 115:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101);
END_STATE();
- case 135:
+ case 116:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113);
END_STATE();
- case 136:
+ case 117:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114);
END_STATE();
- case 137:
+ case 118:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115);
END_STATE();
- case 138:
+ case 119:
if (lookahead != 0 &&
lookahead != '#' &&
(lookahead < 'A' || 'Z' < lookahead) &&
- (lookahead < 'a' || 'z' < lookahead)) ADVANCE(190);
+ (lookahead < 'a' || 'z' < lookahead)) ADVANCE(163);
END_STATE();
- case 139:
+ case 120:
if (lookahead != 0 &&
lookahead != '#' &&
(lookahead < 'A' || 'Z' < lookahead) &&
- (lookahead < 'a' || 'z' < lookahead)) ADVANCE(196);
+ (lookahead < 'a' || 'z' < lookahead)) ADVANCE(169);
END_STATE();
- case 140:
+ case 121:
if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(80);
+ lookahead != '\n') ADVANCE(76);
END_STATE();
- case 141:
+ case 122:
if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(282);
+ lookahead != '\n') ADVANCE(255);
END_STATE();
- case 142:
- if (eof) ADVANCE(145);
+ case 123:
+ if (eof) ADVANCE(126);
ADVANCE_MAP(
- '!', 253,
- '"', 186,
- '#', 4,
- '$', 300,
- '%', 241,
- '&', 228,
- '\'', 187,
- '(', 153,
- ')', 155,
- '*', 148,
- '+', 235,
- ',', 151,
- '-', 237,
- '.', 182,
- '/', 239,
- '0', 285,
- ':', 156,
- ';', 154,
- '<', 172,
- '=', 159,
- '>', 178,
- '?', 31,
- '@', 304,
- '[', 161,
- '\\', 101,
- ']', 162,
- '^', 231,
- '`', 278,
- 's', 298,
- '{', 150,
- '|', 232,
- '}', 152,
- '~', 254,
+ '!', 226,
+ '"', 159,
+ '#', 3,
+ '$', 273,
+ '%', 214,
+ '&', 201,
+ '\'', 160,
+ '(', 134,
+ ')', 136,
+ '*', 129,
+ '+', 208,
+ ',', 132,
+ '-', 210,
+ '.', 155,
+ '/', 212,
+ '0', 258,
+ ':', 137,
+ ';', 135,
+ '<', 147,
+ '=', 140,
+ '>', 151,
+ '?', 28,
+ '@', 277,
+ '[', 142,
+ '\\', 82,
+ ']', 143,
+ '^', 204,
+ '`', 251,
+ 's', 271,
+ '{', 131,
+ '|', 205,
+ '}', 133,
+ '~', 227,
);
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(142);
- if (lookahead > '@') ADVANCE(302);
+ 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 143:
- if (eof) ADVANCE(145);
+ case 124:
+ if (eof) ADVANCE(126);
ADVANCE_MAP(
- '!', 253,
- '"', 186,
- '#', 79,
- '%', 240,
- '&', 229,
- '\'', 187,
- '(', 153,
- ')', 155,
- '*', 149,
- '+', 234,
- ',', 151,
- '-', 236,
- '.', 183,
- '/', 238,
- '0', 285,
- ':', 156,
- ';', 154,
- '<', 175,
- '=', 158,
- '>', 179,
- '?', 32,
- '@', 304,
- '[', 161,
- '\\', 101,
- ']', 162,
- '^', 230,
- '`', 278,
- '{', 150,
- '|', 233,
- '}', 152,
- '~', 254,
+ '!', 226,
+ '"', 159,
+ '#', 75,
+ '%', 213,
+ '&', 202,
+ '\'', 160,
+ '(', 134,
+ ')', 136,
+ '*', 130,
+ '+', 207,
+ ',', 132,
+ '-', 209,
+ '.', 156,
+ '/', 211,
+ '0', 258,
+ ':', 137,
+ ';', 135,
+ '<', 149,
+ '=', 139,
+ '>', 152,
+ '?', 29,
+ '@', 277,
+ '[', 142,
+ '\\', 82,
+ ']', 143,
+ '^', 203,
+ '`', 251,
+ '{', 131,
+ '|', 206,
+ '}', 133,
+ '~', 227,
);
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(143);
- if (lookahead > '#') ADVANCE(302);
+ 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 144:
- if (eof) ADVANCE(145);
+ case 125:
+ if (eof) ADVANCE(126);
ADVANCE_MAP(
- '!', 252,
- '"', 186,
- '#', 4,
- '\'', 187,
- '(', 153,
- ')', 155,
- '*', 147,
- '+', 234,
- ',', 151,
- '-', 236,
- '.', 30,
- '/', 238,
- '0', 285,
- ':', 156,
- ';', 154,
- '<', 176,
- '=', 160,
- '>', 177,
- '@', 304,
- '[', 161,
- '\\', 101,
- ']', 162,
- '`', 278,
- '{', 150,
- '}', 152,
- '~', 254,
+ '!', 225,
+ '"', 159,
+ '#', 3,
+ '\'', 160,
+ '(', 134,
+ ')', 136,
+ '*', 128,
+ '+', 207,
+ ',', 132,
+ '-', 209,
+ '.', 27,
+ '/', 211,
+ '0', 258,
+ ':', 137,
+ ';', 135,
+ '<', 145,
+ '=', 141,
+ '>', 150,
+ '@', 277,
+ '[', 142,
+ '\\', 82,
+ ']', 143,
+ '`', 251,
+ '{', 131,
+ '}', 133,
+ '~', 227,
);
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(286);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(144);
+ 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(302);
+ (lookahead < '{' || '~' < lookahead)) ADVANCE(275);
END_STATE();
- case 145:
+ case 126:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
- case 146:
+ case 127:
ACCEPT_TOKEN(sym_hash_bang_line);
if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(146);
+ lookahead != '\n') ADVANCE(127);
END_STATE();
- case 147:
+ case 128:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
- case 148:
+ case 129:
ACCEPT_TOKEN(anon_sym_STAR);
- if (lookahead == '*') ADVANCE(243);
- if (lookahead == '=') ADVANCE(204);
+ if (lookahead == '*') ADVANCE(216);
+ if (lookahead == '=') ADVANCE(177);
END_STATE();
- case 149:
+ case 130:
ACCEPT_TOKEN(anon_sym_STAR);
- if (lookahead == '*') ADVANCE(242);
+ if (lookahead == '*') ADVANCE(215);
END_STATE();
- case 150:
+ case 131:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
- case 151:
+ case 132:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
- case 152:
+ case 133:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
- case 153:
+ case 134:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
- case 154:
+ case 135:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
- case 155:
+ case 136:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
- case 156:
+ case 137:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
- case 157:
+ case 138:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
- case 158:
+ case 139:
ACCEPT_TOKEN(anon_sym_EQ);
- if (lookahead == '=') ADVANCE(245);
+ if (lookahead == '=') ADVANCE(218);
END_STATE();
- case 159:
+ case 140:
ACCEPT_TOKEN(anon_sym_EQ);
- if (lookahead == '=') ADVANCE(245);
- if (lookahead == '>') ADVANCE(200);
+ if (lookahead == '=') ADVANCE(218);
+ if (lookahead == '>') ADVANCE(173);
END_STATE();
- case 160:
+ case 141:
ACCEPT_TOKEN(anon_sym_EQ);
- if (lookahead == '>') ADVANCE(200);
+ if (lookahead == '>') ADVANCE(173);
END_STATE();
- case 161:
+ case 142:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
- case 162:
+ case 143:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
- case 163:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- END_STATE();
- case 164:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- if (lookahead == '*') ADVANCE(27);
- if (lookahead == '/') ADVANCE(277);
- END_STATE();
- case 165:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- if (lookahead == '/') ADVANCE(164);
- if (lookahead == '<') ADVANCE(166);
- if ((set_contains(extras_character_set_1, 10, lookahead)) &&
- lookahead != '\n') ADVANCE(165);
- if (lookahead != 0 &&
- (lookahead < '\t' || '\r' < lookahead)) ADVANCE(163);
- END_STATE();
- case 166:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- if (lookahead == '/') ADVANCE(98);
- END_STATE();
- case 167:
- ACCEPT_TOKEN(sym_glimmer_opening_tag);
- END_STATE();
- case 168:
- ACCEPT_TOKEN(sym_glimmer_closing_tag);
- END_STATE();
- case 169:
+ case 144:
ACCEPT_TOKEN(sym_html_character_reference);
END_STATE();
- case 170:
- ACCEPT_TOKEN(anon_sym_LT);
- END_STATE();
- case 171:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '/') ADVANCE(184);
- END_STATE();
- case 172:
+ case 145:
ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '/') ADVANCE(184);
- if (lookahead == '<') ADVANCE(227);
- if (lookahead == '=') ADVANCE(244);
- if (lookahead == 't') ADVANCE(83);
END_STATE();
- case 173:
+ case 146:
ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '<') ADVANCE(227);
- if (lookahead == '=') ADVANCE(244);
+ if (lookahead == '/') ADVANCE(157);
END_STATE();
- case 174:
+ case 147:
ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '<') ADVANCE(226);
- if (lookahead == '=') ADVANCE(244);
+ if (lookahead == '/') ADVANCE(157);
+ if (lookahead == '<') ADVANCE(200);
+ if (lookahead == '=') ADVANCE(217);
END_STATE();
- case 175:
+ case 148:
ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '<') ADVANCE(226);
- if (lookahead == '=') ADVANCE(244);
- if (lookahead == 't') ADVANCE(83);
+ if (lookahead == '<') ADVANCE(200);
+ if (lookahead == '=') ADVANCE(217);
END_STATE();
- case 176:
+ case 149:
ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == 't') ADVANCE(83);
+ if (lookahead == '<') ADVANCE(199);
+ if (lookahead == '=') ADVANCE(217);
END_STATE();
- case 177:
+ case 150:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
- case 178:
+ case 151:
ACCEPT_TOKEN(anon_sym_GT);
- if (lookahead == '=') ADVANCE(249);
- if (lookahead == '>') ADVANCE(222);
+ if (lookahead == '=') ADVANCE(222);
+ if (lookahead == '>') ADVANCE(195);
END_STATE();
- case 179:
+ case 152:
ACCEPT_TOKEN(anon_sym_GT);
- if (lookahead == '=') ADVANCE(249);
- if (lookahead == '>') ADVANCE(223);
+ if (lookahead == '=') ADVANCE(222);
+ if (lookahead == '>') ADVANCE(196);
END_STATE();
- case 180:
+ case 153:
ACCEPT_TOKEN(sym_jsx_identifier);
if (lookahead == '$' ||
lookahead == '-' ||
('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180);
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153);
END_STATE();
- case 181:
+ case 154:
ACCEPT_TOKEN(anon_sym_DOT);
END_STATE();
- case 182:
+ case 155:
ACCEPT_TOKEN(anon_sym_DOT);
- if (lookahead == '.') ADVANCE(33);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(291);
+ if (lookahead == '.') ADVANCE(30);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264);
END_STATE();
- case 183:
+ case 156:
ACCEPT_TOKEN(anon_sym_DOT);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(291);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264);
END_STATE();
- case 184:
+ case 157:
ACCEPT_TOKEN(anon_sym_LT_SLASH);
END_STATE();
- case 185:
+ case 158:
ACCEPT_TOKEN(anon_sym_SLASH_GT);
END_STATE();
- case 186:
+ case 159:
ACCEPT_TOKEN(anon_sym_DQUOTE);
END_STATE();
- case 187:
+ case 160:
ACCEPT_TOKEN(anon_sym_SQUOTE);
END_STATE();
- case 188:
+ case 161:
ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(17);
- if (lookahead == '/') ADVANCE(189);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(188);
+ if (lookahead == '&') ADVANCE(14);
+ if (lookahead == '/') ADVANCE(162);
+ if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(161);
if (lookahead != 0 &&
- lookahead != '"') ADVANCE(190);
+ lookahead != '"') ADVANCE(163);
END_STATE();
- case 189:
+ case 162:
ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(138);
- if (lookahead == '*') ADVANCE(192);
- if (lookahead == '/') ADVANCE(193);
+ if (lookahead == '&') ADVANCE(119);
+ if (lookahead == '*') ADVANCE(165);
+ if (lookahead == '/') ADVANCE(166);
if (lookahead != 0 &&
- lookahead != '"') ADVANCE(190);
+ lookahead != '"') ADVANCE(163);
END_STATE();
- case 190:
+ case 163:
ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(138);
+ if (lookahead == '&') ADVANCE(119);
if (lookahead != 0 &&
- lookahead != '"') ADVANCE(190);
+ lookahead != '"') ADVANCE(163);
END_STATE();
- case 191:
+ case 164:
ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(28);
- if (lookahead == '*') ADVANCE(191);
- if (lookahead == '/') ADVANCE(190);
+ if (lookahead == '&') ADVANCE(25);
+ if (lookahead == '*') ADVANCE(164);
+ if (lookahead == '/') ADVANCE(163);
if (lookahead != 0 &&
- lookahead != '"') ADVANCE(192);
+ lookahead != '"') ADVANCE(165);
END_STATE();
- case 192:
+ case 165:
ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(28);
- if (lookahead == '*') ADVANCE(191);
+ if (lookahead == '&') ADVANCE(25);
+ if (lookahead == '*') ADVANCE(164);
if (lookahead != 0 &&
- lookahead != '"') ADVANCE(192);
+ lookahead != '"') ADVANCE(165);
END_STATE();
- case 193:
+ case 166:
ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(275);
+ if (lookahead == '&') ADVANCE(248);
if (lookahead == '\n' ||
lookahead == '\r' ||
lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(190);
+ lookahead == 0x2029) ADVANCE(163);
if (lookahead != 0 &&
- lookahead != '"') ADVANCE(193);
+ lookahead != '"') ADVANCE(166);
END_STATE();
- case 194:
+ case 167:
ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(18);
- if (lookahead == '/') ADVANCE(195);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(194);
+ if (lookahead == '&') ADVANCE(15);
+ if (lookahead == '/') ADVANCE(168);
+ if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(167);
if (lookahead != 0 &&
lookahead != '&' &&
- lookahead != '\'') ADVANCE(196);
+ lookahead != '\'') ADVANCE(169);
END_STATE();
- case 195:
+ case 168:
ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(139);
- if (lookahead == '*') ADVANCE(198);
- if (lookahead == '/') ADVANCE(199);
+ if (lookahead == '&') ADVANCE(120);
+ if (lookahead == '*') ADVANCE(171);
+ if (lookahead == '/') ADVANCE(172);
if (lookahead != 0 &&
lookahead != '&' &&
- lookahead != '\'') ADVANCE(196);
+ lookahead != '\'') ADVANCE(169);
END_STATE();
- case 196:
+ case 169:
ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(139);
+ if (lookahead == '&') ADVANCE(120);
if (lookahead != 0 &&
lookahead != '&' &&
- lookahead != '\'') ADVANCE(196);
+ lookahead != '\'') ADVANCE(169);
END_STATE();
- case 197:
+ case 170:
ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(29);
- if (lookahead == '*') ADVANCE(197);
- if (lookahead == '/') ADVANCE(196);
+ if (lookahead == '&') ADVANCE(26);
+ if (lookahead == '*') ADVANCE(170);
+ if (lookahead == '/') ADVANCE(169);
if (lookahead != 0 &&
lookahead != '&' &&
- lookahead != '\'') ADVANCE(198);
+ lookahead != '\'') ADVANCE(171);
END_STATE();
- case 198:
+ case 171:
ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(29);
- if (lookahead == '*') ADVANCE(197);
+ if (lookahead == '&') ADVANCE(26);
+ if (lookahead == '*') ADVANCE(170);
if (lookahead != 0 &&
lookahead != '&' &&
- lookahead != '\'') ADVANCE(198);
+ lookahead != '\'') ADVANCE(171);
END_STATE();
- case 199:
+ case 172:
ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(276);
+ if (lookahead == '&') ADVANCE(249);
if (lookahead == '\n' ||
lookahead == '\r' ||
lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(196);
+ lookahead == 0x2029) ADVANCE(169);
if (lookahead != 0 &&
lookahead != '&' &&
- lookahead != '\'') ADVANCE(199);
+ lookahead != '\'') ADVANCE(172);
END_STATE();
- case 200:
+ case 173:
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
- case 201:
+ case 174:
ACCEPT_TOKEN(sym_optional_chain);
END_STATE();
- case 202:
+ case 175:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
- case 203:
+ case 176:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
- case 204:
+ case 177:
ACCEPT_TOKEN(anon_sym_STAR_EQ);
END_STATE();
- case 205:
+ case 178:
ACCEPT_TOKEN(anon_sym_SLASH_EQ);
END_STATE();
- case 206:
+ case 179:
ACCEPT_TOKEN(anon_sym_PERCENT_EQ);
END_STATE();
- case 207:
+ case 180:
ACCEPT_TOKEN(anon_sym_CARET_EQ);
END_STATE();
- case 208:
+ case 181:
ACCEPT_TOKEN(anon_sym_AMP_EQ);
END_STATE();
- case 209:
+ case 182:
ACCEPT_TOKEN(anon_sym_PIPE_EQ);
END_STATE();
- case 210:
+ case 183:
ACCEPT_TOKEN(anon_sym_GT_GT_EQ);
END_STATE();
- case 211:
+ case 184:
ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ);
END_STATE();
- case 212:
+ case 185:
ACCEPT_TOKEN(anon_sym_LT_LT_EQ);
END_STATE();
- case 213:
+ case 186:
ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ);
END_STATE();
- case 214:
+ case 187:
ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ);
END_STATE();
- case 215:
+ case 188:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ);
END_STATE();
- case 216:
+ case 189:
ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ);
END_STATE();
- case 217:
+ case 190:
ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT);
END_STATE();
- case 218:
+ case 191:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
- case 219:
+ case 192:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
- if (lookahead == '=') ADVANCE(214);
+ if (lookahead == '=') ADVANCE(187);
END_STATE();
- case 220:
+ case 193:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
- case 221:
+ case 194:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
- if (lookahead == '=') ADVANCE(215);
+ if (lookahead == '=') ADVANCE(188);
END_STATE();
- case 222:
+ case 195:
ACCEPT_TOKEN(anon_sym_GT_GT);
- if (lookahead == '=') ADVANCE(210);
- if (lookahead == '>') ADVANCE(225);
+ if (lookahead == '=') ADVANCE(183);
+ if (lookahead == '>') ADVANCE(198);
END_STATE();
- case 223:
+ case 196:
ACCEPT_TOKEN(anon_sym_GT_GT);
- if (lookahead == '>') ADVANCE(224);
+ if (lookahead == '>') ADVANCE(197);
END_STATE();
- case 224:
+ case 197:
ACCEPT_TOKEN(anon_sym_GT_GT_GT);
END_STATE();
- case 225:
+ case 198:
ACCEPT_TOKEN(anon_sym_GT_GT_GT);
- if (lookahead == '=') ADVANCE(211);
+ if (lookahead == '=') ADVANCE(184);
END_STATE();
- case 226:
+ case 199:
ACCEPT_TOKEN(anon_sym_LT_LT);
END_STATE();
- case 227:
+ case 200:
ACCEPT_TOKEN(anon_sym_LT_LT);
- if (lookahead == '=') ADVANCE(212);
+ if (lookahead == '=') ADVANCE(185);
END_STATE();
- case 228:
+ case 201:
ACCEPT_TOKEN(anon_sym_AMP);
- if (lookahead == '&') ADVANCE(219);
- if (lookahead == '=') ADVANCE(208);
+ if (lookahead == '&') ADVANCE(192);
+ if (lookahead == '=') ADVANCE(181);
END_STATE();
- case 229:
+ case 202:
ACCEPT_TOKEN(anon_sym_AMP);
- if (lookahead == '&') ADVANCE(218);
+ if (lookahead == '&') ADVANCE(191);
END_STATE();
- case 230:
+ case 203:
ACCEPT_TOKEN(anon_sym_CARET);
END_STATE();
- case 231:
+ case 204:
ACCEPT_TOKEN(anon_sym_CARET);
- if (lookahead == '=') ADVANCE(207);
+ if (lookahead == '=') ADVANCE(180);
END_STATE();
- case 232:
+ case 205:
ACCEPT_TOKEN(anon_sym_PIPE);
- if (lookahead == '=') ADVANCE(209);
- if (lookahead == '|') ADVANCE(221);
+ if (lookahead == '=') ADVANCE(182);
+ if (lookahead == '|') ADVANCE(194);
END_STATE();
- case 233:
+ case 206:
ACCEPT_TOKEN(anon_sym_PIPE);
- if (lookahead == '|') ADVANCE(220);
+ if (lookahead == '|') ADVANCE(193);
END_STATE();
- case 234:
+ case 207:
ACCEPT_TOKEN(anon_sym_PLUS);
- if (lookahead == '+') ADVANCE(255);
+ if (lookahead == '+') ADVANCE(228);
END_STATE();
- case 235:
+ case 208:
ACCEPT_TOKEN(anon_sym_PLUS);
- if (lookahead == '+') ADVANCE(255);
- if (lookahead == '=') ADVANCE(202);
+ if (lookahead == '+') ADVANCE(228);
+ if (lookahead == '=') ADVANCE(175);
END_STATE();
- case 236:
+ case 209:
ACCEPT_TOKEN(anon_sym_DASH);
- if (lookahead == '-') ADVANCE(256);
+ if (lookahead == '-') ADVANCE(229);
END_STATE();
- case 237:
+ case 210:
ACCEPT_TOKEN(anon_sym_DASH);
- if (lookahead == '-') ADVANCE(256);
- if (lookahead == '=') ADVANCE(203);
+ if (lookahead == '-') ADVANCE(229);
+ if (lookahead == '=') ADVANCE(176);
END_STATE();
- case 238:
+ case 211:
ACCEPT_TOKEN(anon_sym_SLASH);
- if (lookahead == '*') ADVANCE(27);
- if (lookahead == '/') ADVANCE(277);
+ if (lookahead == '*') ADVANCE(24);
+ if (lookahead == '/') ADVANCE(250);
END_STATE();
- case 239:
+ case 212:
ACCEPT_TOKEN(anon_sym_SLASH);
- if (lookahead == '*') ADVANCE(27);
- if (lookahead == '/') ADVANCE(277);
- if (lookahead == '=') ADVANCE(205);
+ if (lookahead == '*') ADVANCE(24);
+ if (lookahead == '/') ADVANCE(250);
+ if (lookahead == '=') ADVANCE(178);
END_STATE();
- case 240:
+ case 213:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
- case 241:
+ case 214:
ACCEPT_TOKEN(anon_sym_PERCENT);
- if (lookahead == '=') ADVANCE(206);
+ if (lookahead == '=') ADVANCE(179);
END_STATE();
- case 242:
+ case 215:
ACCEPT_TOKEN(anon_sym_STAR_STAR);
END_STATE();
- case 243:
+ case 216:
ACCEPT_TOKEN(anon_sym_STAR_STAR);
- if (lookahead == '=') ADVANCE(213);
+ if (lookahead == '=') ADVANCE(186);
END_STATE();
- case 244:
+ case 217:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
- case 245:
+ case 218:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
- if (lookahead == '=') ADVANCE(246);
+ if (lookahead == '=') ADVANCE(219);
END_STATE();
- case 246:
+ case 219:
ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ);
END_STATE();
- case 247:
+ case 220:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
- if (lookahead == '=') ADVANCE(248);
+ if (lookahead == '=') ADVANCE(221);
END_STATE();
- case 248:
+ case 221:
ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ);
END_STATE();
- case 249:
+ case 222:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
- case 250:
+ case 223:
ACCEPT_TOKEN(anon_sym_QMARK_QMARK);
END_STATE();
- case 251:
+ case 224:
ACCEPT_TOKEN(anon_sym_QMARK_QMARK);
- if (lookahead == '=') ADVANCE(216);
+ if (lookahead == '=') ADVANCE(189);
END_STATE();
- case 252:
+ case 225:
ACCEPT_TOKEN(anon_sym_BANG);
END_STATE();
- case 253:
+ case 226:
ACCEPT_TOKEN(anon_sym_BANG);
- if (lookahead == '=') ADVANCE(247);
+ if (lookahead == '=') ADVANCE(220);
END_STATE();
- case 254:
+ case 227:
ACCEPT_TOKEN(anon_sym_TILDE);
END_STATE();
- case 255:
+ case 228:
ACCEPT_TOKEN(anon_sym_PLUS_PLUS);
END_STATE();
- case 256:
+ case 229:
ACCEPT_TOKEN(anon_sym_DASH_DASH);
END_STATE();
- case 257:
+ case 230:
ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '*') ADVANCE(259);
- if (lookahead == '/') ADVANCE(261);
+ if (lookahead == '*') ADVANCE(232);
+ if (lookahead == '/') ADVANCE(234);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '"' &&
- lookahead != '\\') ADVANCE(262);
+ lookahead != '\\') ADVANCE(235);
END_STATE();
- case 258:
+ case 231:
ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '*') ADVANCE(258);
- if (lookahead == '/') ADVANCE(262);
+ if (lookahead == '*') ADVANCE(231);
+ if (lookahead == '/') ADVANCE(235);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '"' &&
- lookahead != '\\') ADVANCE(259);
+ lookahead != '\\') ADVANCE(232);
END_STATE();
- case 259:
+ case 232:
ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '*') ADVANCE(258);
+ if (lookahead == '*') ADVANCE(231);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '"' &&
- lookahead != '\\') ADVANCE(259);
+ lookahead != '\\') ADVANCE(232);
END_STATE();
- case 260:
+ case 233:
ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '/') ADVANCE(257);
+ if (lookahead == '/') ADVANCE(230);
if ((set_contains(extras_character_set_1, 10, lookahead)) &&
lookahead != '\n' &&
- lookahead != '\r') ADVANCE(260);
+ lookahead != '\r') ADVANCE(233);
if (lookahead != 0 &&
(lookahead < '\t' || '\r' < lookahead) &&
lookahead != '"' &&
- lookahead != '\\') ADVANCE(262);
+ lookahead != '\\') ADVANCE(235);
END_STATE();
- case 261:
+ case 234:
ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
if (lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(262);
+ lookahead == 0x2029) ADVANCE(235);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '"' &&
- lookahead != '\\') ADVANCE(261);
+ lookahead != '\\') ADVANCE(234);
END_STATE();
- case 262:
+ case 235:
ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '"' &&
- lookahead != '\\') ADVANCE(262);
+ lookahead != '\\') ADVANCE(235);
END_STATE();
- case 263:
+ case 236:
ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '*') ADVANCE(265);
- if (lookahead == '/') ADVANCE(267);
+ if (lookahead == '*') ADVANCE(238);
+ if (lookahead == '/') ADVANCE(240);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '\'' &&
- lookahead != '\\') ADVANCE(268);
+ lookahead != '\\') ADVANCE(241);
END_STATE();
- case 264:
+ case 237:
ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '*') ADVANCE(264);
- if (lookahead == '/') ADVANCE(268);
+ if (lookahead == '*') ADVANCE(237);
+ if (lookahead == '/') ADVANCE(241);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '\'' &&
- lookahead != '\\') ADVANCE(265);
+ lookahead != '\\') ADVANCE(238);
END_STATE();
- case 265:
+ case 238:
ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '*') ADVANCE(264);
+ if (lookahead == '*') ADVANCE(237);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '\'' &&
- lookahead != '\\') ADVANCE(265);
+ lookahead != '\\') ADVANCE(238);
END_STATE();
- case 266:
+ case 239:
ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '/') ADVANCE(263);
+ if (lookahead == '/') ADVANCE(236);
if ((set_contains(extras_character_set_1, 10, lookahead)) &&
lookahead != '\n' &&
- lookahead != '\r') ADVANCE(266);
+ lookahead != '\r') ADVANCE(239);
if (lookahead != 0 &&
(lookahead < '\t' || '\r' < lookahead) &&
lookahead != '\'' &&
- lookahead != '\\') ADVANCE(268);
+ lookahead != '\\') ADVANCE(241);
END_STATE();
- case 267:
+ case 240:
ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
if (lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(268);
+ lookahead == 0x2029) ADVANCE(241);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '\'' &&
- lookahead != '\\') ADVANCE(267);
+ lookahead != '\\') ADVANCE(240);
END_STATE();
- case 268:
+ case 241:
ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != '\'' &&
- lookahead != '\\') ADVANCE(268);
+ lookahead != '\\') ADVANCE(241);
END_STATE();
- case 269:
+ case 242:
ACCEPT_TOKEN(sym_escape_sequence);
END_STATE();
- case 270:
+ case 243:
ACCEPT_TOKEN(sym_escape_sequence);
- if (lookahead == '\\') ADVANCE(101);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 271:
+ case 244:
ACCEPT_TOKEN(sym_escape_sequence);
if (lookahead == '\n' ||
lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(269);
+ lookahead == 0x2029) ADVANCE(242);
END_STATE();
- case 272:
+ case 245:
ACCEPT_TOKEN(sym_escape_sequence);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(269);
+ if (('0' <= lookahead && lookahead <= '7')) ADVANCE(242);
END_STATE();
- case 273:
+ case 246:
ACCEPT_TOKEN(sym_escape_sequence);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(272);
+ if (('0' <= lookahead && lookahead <= '7')) ADVANCE(245);
END_STATE();
- case 274:
+ case 247:
ACCEPT_TOKEN(sym_comment);
END_STATE();
- case 275:
+ case 248:
ACCEPT_TOKEN(sym_comment);
if (lookahead == '\n' ||
lookahead == '\r' ||
lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(190);
+ lookahead == 0x2029) ADVANCE(163);
if (lookahead == '#' ||
('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(277);
- if (lookahead != 0) ADVANCE(193);
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250);
+ if (lookahead != 0) ADVANCE(166);
END_STATE();
- case 276:
+ case 249:
ACCEPT_TOKEN(sym_comment);
if (lookahead == '\n' ||
lookahead == '\r' ||
lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(196);
+ lookahead == 0x2029) ADVANCE(169);
if (lookahead == '#' ||
('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(277);
- if (lookahead != 0) ADVANCE(199);
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250);
+ if (lookahead != 0) ADVANCE(172);
END_STATE();
- case 277:
+ case 250:
ACCEPT_TOKEN(sym_comment);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\r' &&
lookahead != 0x2028 &&
- lookahead != 0x2029) ADVANCE(277);
+ lookahead != 0x2029) ADVANCE(250);
END_STATE();
- case 278:
+ case 251:
ACCEPT_TOKEN(anon_sym_BQUOTE);
END_STATE();
- case 279:
+ case 252:
ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE);
END_STATE();
- case 280:
+ case 253:
ACCEPT_TOKEN(anon_sym_SLASH2);
END_STATE();
- case 281:
+ case 254:
ACCEPT_TOKEN(sym_regex_pattern);
- if (lookahead == '\n') SKIP(35);
- if (lookahead == '/') ADVANCE(24);
- if (lookahead == '[') ADVANCE(80);
- if (lookahead == '\\') ADVANCE(141);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(281);
- if (lookahead != 0) ADVANCE(282);
+ 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 282:
+ case 255:
ACCEPT_TOKEN(sym_regex_pattern);
- if (lookahead == '[') ADVANCE(80);
- if (lookahead == '\\') ADVANCE(141);
+ if (lookahead == '[') ADVANCE(76);
+ if (lookahead == '\\') ADVANCE(122);
if (lookahead != 0 &&
lookahead != '\n' &&
- lookahead != '/') ADVANCE(282);
+ lookahead != '/') ADVANCE(255);
END_STATE();
- case 283:
+ case 256:
ACCEPT_TOKEN(sym_regex_flags);
- if (lookahead == '\\') ADVANCE(101);
- if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(283);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ 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 284:
+ case 257:
ACCEPT_TOKEN(sym_number);
END_STATE();
- case 285:
+ case 258:
ACCEPT_TOKEN(sym_number);
ADVANCE_MAP(
- '.', 293,
- '0', 287,
- '_', 118,
- 'n', 284,
- 'B', 114,
- 'b', 114,
- 'E', 112,
- 'e', 112,
- 'O', 115,
- 'o', 115,
- 'X', 123,
- 'x', 123,
+ '.', 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(286);
+ if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259);
END_STATE();
- case 286:
+ case 259:
ACCEPT_TOKEN(sym_number);
- if (lookahead == '.') ADVANCE(293);
- if (lookahead == '_') ADVANCE(116);
- if (lookahead == 'n') ADVANCE(284);
+ if (lookahead == '.') ADVANCE(266);
+ if (lookahead == '_') ADVANCE(97);
+ if (lookahead == 'n') ADVANCE(257);
if (lookahead == 'E' ||
- lookahead == 'e') ADVANCE(112);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(286);
+ lookahead == 'e') ADVANCE(93);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259);
END_STATE();
- case 287:
+ case 260:
ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(118);
- if (lookahead == 'n') ADVANCE(284);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287);
+ if (lookahead == '_') ADVANCE(99);
+ if (lookahead == 'n') ADVANCE(257);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260);
END_STATE();
- case 288:
+ case 261:
ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(114);
- if (lookahead == 'n') ADVANCE(284);
+ if (lookahead == '_') ADVANCE(95);
+ if (lookahead == 'n') ADVANCE(257);
if (lookahead == '0' ||
- lookahead == '1') ADVANCE(288);
+ lookahead == '1') ADVANCE(261);
END_STATE();
- case 289:
+ case 262:
ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(115);
- if (lookahead == 'n') ADVANCE(284);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(289);
+ if (lookahead == '_') ADVANCE(96);
+ if (lookahead == 'n') ADVANCE(257);
+ if (('0' <= lookahead && lookahead <= '7')) ADVANCE(262);
END_STATE();
- case 290:
+ case 263:
ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(123);
- if (lookahead == 'n') ADVANCE(284);
+ if (lookahead == '_') ADVANCE(104);
+ if (lookahead == 'n') ADVANCE(257);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(290);
+ ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263);
END_STATE();
- case 291:
+ case 264:
ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(117);
+ if (lookahead == '_') ADVANCE(98);
if (lookahead == 'E' ||
- lookahead == 'e') ADVANCE(112);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(291);
+ lookahead == 'e') ADVANCE(93);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264);
END_STATE();
- case 292:
+ case 265:
ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(119);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(292);
+ if (lookahead == '_') ADVANCE(100);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265);
END_STATE();
- case 293:
+ case 266:
ACCEPT_TOKEN(sym_number);
if (lookahead == 'E' ||
- lookahead == 'e') ADVANCE(112);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(291);
+ lookahead == 'e') ADVANCE(93);
+ if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264);
END_STATE();
- case 294:
+ case 267:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '-') ADVANCE(180);
- if (lookahead == '\\') ADVANCE(101);
+ if (lookahead == '-') ADVANCE(153);
+ if (lookahead == '\\') ADVANCE(82);
if (lookahead == '$' ||
('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(294);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 295:
+ case 268:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
- if (lookahead == 'a') ADVANCE(299);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (lookahead == 'a') ADVANCE(272);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 296:
+ case 269:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
- if (lookahead == 'c') ADVANCE(301);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (lookahead == 'c') ADVANCE(274);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 297:
+ case 270:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
- if (lookahead == 'i') ADVANCE(296);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (lookahead == 'i') ADVANCE(269);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 298:
+ case 271:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
- if (lookahead == 't') ADVANCE(295);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (lookahead == 't') ADVANCE(268);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 299:
+ case 272:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
- if (lookahead == 't') ADVANCE(297);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (lookahead == 't') ADVANCE(270);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 300:
+ case 273:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
- if (lookahead == '{') ADVANCE(279);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (lookahead == '{') ADVANCE(252);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 301:
+ case 274:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
+ if (lookahead == '\\') ADVANCE(82);
if (('\t' <= lookahead && lookahead <= '\r') ||
- lookahead == ' ') ADVANCE(88);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ lookahead == ' ') ADVANCE(78);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 302:
+ case 275:
ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(101);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(302);
+ if (lookahead == '\\') ADVANCE(82);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275);
END_STATE();
- case 303:
+ case 276:
ACCEPT_TOKEN(sym_private_property_identifier);
- if (lookahead == '\\') ADVANCE(100);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(303);
+ if (lookahead == '\\') ADVANCE(81);
+ if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(276);
END_STATE();
- case 304:
+ case 277:
ACCEPT_TOKEN(anon_sym_AT);
END_STATE();
- case 305:
+ case 278:
ACCEPT_TOKEN(aux_sym_method_definition_token1);
- if (lookahead == '\n') ADVANCE(305);
+ if (lookahead == '\n') ADVANCE(278);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') ADVANCE(1);
END_STATE();
@@ -6786,1751 +6570,1727 @@ 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 = 144, .external_lex_state = 2},
- [2] = {.lex_state = 5, .external_lex_state = 2},
- [3] = {.lex_state = 5, .external_lex_state = 2},
- [4] = {.lex_state = 5, .external_lex_state = 2},
- [5] = {.lex_state = 5, .external_lex_state = 2},
- [6] = {.lex_state = 5, .external_lex_state = 2},
- [7] = {.lex_state = 144, .external_lex_state = 2},
- [8] = {.lex_state = 144, .external_lex_state = 2},
- [9] = {.lex_state = 144, .external_lex_state = 2},
- [10] = {.lex_state = 144, .external_lex_state = 2},
- [11] = {.lex_state = 144, .external_lex_state = 2},
- [12] = {.lex_state = 144, .external_lex_state = 2},
- [13] = {.lex_state = 144, .external_lex_state = 2},
- [14] = {.lex_state = 144, .external_lex_state = 2},
- [15] = {.lex_state = 144, .external_lex_state = 2},
- [16] = {.lex_state = 144, .external_lex_state = 2},
- [17] = {.lex_state = 144, .external_lex_state = 2},
- [18] = {.lex_state = 144, .external_lex_state = 2},
- [19] = {.lex_state = 144, .external_lex_state = 2},
- [20] = {.lex_state = 144, .external_lex_state = 2},
- [21] = {.lex_state = 144, .external_lex_state = 2},
- [22] = {.lex_state = 144, .external_lex_state = 2},
- [23] = {.lex_state = 144, .external_lex_state = 2},
- [24] = {.lex_state = 144, .external_lex_state = 2},
- [25] = {.lex_state = 144, .external_lex_state = 2},
- [26] = {.lex_state = 144, .external_lex_state = 2},
- [27] = {.lex_state = 144, .external_lex_state = 2},
- [28] = {.lex_state = 144, .external_lex_state = 2},
- [29] = {.lex_state = 144, .external_lex_state = 2},
- [30] = {.lex_state = 144, .external_lex_state = 2},
- [31] = {.lex_state = 144, .external_lex_state = 2},
- [32] = {.lex_state = 144, .external_lex_state = 2},
- [33] = {.lex_state = 144, .external_lex_state = 2},
- [34] = {.lex_state = 144, .external_lex_state = 2},
- [35] = {.lex_state = 144, .external_lex_state = 2},
- [36] = {.lex_state = 144, .external_lex_state = 2},
- [37] = {.lex_state = 144, .external_lex_state = 2},
- [38] = {.lex_state = 144, .external_lex_state = 2},
- [39] = {.lex_state = 144, .external_lex_state = 2},
- [40] = {.lex_state = 144, .external_lex_state = 2},
- [41] = {.lex_state = 144, .external_lex_state = 2},
- [42] = {.lex_state = 144, .external_lex_state = 2},
- [43] = {.lex_state = 144, .external_lex_state = 2},
- [44] = {.lex_state = 144, .external_lex_state = 2},
- [45] = {.lex_state = 144, .external_lex_state = 2},
- [46] = {.lex_state = 144, .external_lex_state = 2},
- [47] = {.lex_state = 144, .external_lex_state = 2},
- [48] = {.lex_state = 144, .external_lex_state = 2},
- [49] = {.lex_state = 144, .external_lex_state = 2},
- [50] = {.lex_state = 144, .external_lex_state = 2},
- [51] = {.lex_state = 144, .external_lex_state = 2},
- [52] = {.lex_state = 144, .external_lex_state = 2},
- [53] = {.lex_state = 144, .external_lex_state = 2},
- [54] = {.lex_state = 144, .external_lex_state = 2},
- [55] = {.lex_state = 144, .external_lex_state = 2},
- [56] = {.lex_state = 144, .external_lex_state = 2},
- [57] = {.lex_state = 144, .external_lex_state = 2},
- [58] = {.lex_state = 143, .external_lex_state = 3},
- [59] = {.lex_state = 143, .external_lex_state = 4},
- [60] = {.lex_state = 143, .external_lex_state = 4},
- [61] = {.lex_state = 143, .external_lex_state = 3},
- [62] = {.lex_state = 143, .external_lex_state = 3},
- [63] = {.lex_state = 143, .external_lex_state = 4},
- [64] = {.lex_state = 144, .external_lex_state = 2},
- [65] = {.lex_state = 143, .external_lex_state = 4},
- [66] = {.lex_state = 143, .external_lex_state = 4},
- [67] = {.lex_state = 143, .external_lex_state = 4},
- [68] = {.lex_state = 143, .external_lex_state = 4},
- [69] = {.lex_state = 143, .external_lex_state = 4},
- [70] = {.lex_state = 143, .external_lex_state = 4},
- [71] = {.lex_state = 143, .external_lex_state = 4},
- [72] = {.lex_state = 143, .external_lex_state = 4},
- [73] = {.lex_state = 143, .external_lex_state = 4},
- [74] = {.lex_state = 144, .external_lex_state = 2},
- [75] = {.lex_state = 144, .external_lex_state = 2},
- [76] = {.lex_state = 143, .external_lex_state = 4},
- [77] = {.lex_state = 144, .external_lex_state = 2},
- [78] = {.lex_state = 144, .external_lex_state = 2},
- [79] = {.lex_state = 143, .external_lex_state = 4},
- [80] = {.lex_state = 144, .external_lex_state = 2},
- [81] = {.lex_state = 143, .external_lex_state = 4},
- [82] = {.lex_state = 143, .external_lex_state = 4},
- [83] = {.lex_state = 144, .external_lex_state = 2},
- [84] = {.lex_state = 143, .external_lex_state = 4},
- [85] = {.lex_state = 144, .external_lex_state = 2},
- [86] = {.lex_state = 144, .external_lex_state = 2},
- [87] = {.lex_state = 144, .external_lex_state = 2},
- [88] = {.lex_state = 144, .external_lex_state = 2},
- [89] = {.lex_state = 144, .external_lex_state = 2},
- [90] = {.lex_state = 144, .external_lex_state = 2},
- [91] = {.lex_state = 144, .external_lex_state = 2},
- [92] = {.lex_state = 144, .external_lex_state = 2},
- [93] = {.lex_state = 144, .external_lex_state = 2},
- [94] = {.lex_state = 144, .external_lex_state = 2},
- [95] = {.lex_state = 144, .external_lex_state = 2},
- [96] = {.lex_state = 144, .external_lex_state = 2},
- [97] = {.lex_state = 144, .external_lex_state = 2},
- [98] = {.lex_state = 144, .external_lex_state = 2},
- [99] = {.lex_state = 144, .external_lex_state = 2},
- [100] = {.lex_state = 144, .external_lex_state = 2},
- [101] = {.lex_state = 144, .external_lex_state = 2},
- [102] = {.lex_state = 144, .external_lex_state = 2},
- [103] = {.lex_state = 144, .external_lex_state = 2},
- [104] = {.lex_state = 144, .external_lex_state = 2},
- [105] = {.lex_state = 144, .external_lex_state = 2},
- [106] = {.lex_state = 144, .external_lex_state = 2},
- [107] = {.lex_state = 144, .external_lex_state = 2},
- [108] = {.lex_state = 144, .external_lex_state = 2},
- [109] = {.lex_state = 144, .external_lex_state = 2},
- [110] = {.lex_state = 144, .external_lex_state = 2},
- [111] = {.lex_state = 144, .external_lex_state = 5},
- [112] = {.lex_state = 144, .external_lex_state = 2},
- [113] = {.lex_state = 144, .external_lex_state = 2},
- [114] = {.lex_state = 144, .external_lex_state = 2},
- [115] = {.lex_state = 144, .external_lex_state = 2},
- [116] = {.lex_state = 144, .external_lex_state = 2},
- [117] = {.lex_state = 144, .external_lex_state = 2},
- [118] = {.lex_state = 144, .external_lex_state = 2},
- [119] = {.lex_state = 144, .external_lex_state = 2},
- [120] = {.lex_state = 144, .external_lex_state = 2},
- [121] = {.lex_state = 144, .external_lex_state = 2},
- [122] = {.lex_state = 144, .external_lex_state = 2},
- [123] = {.lex_state = 144, .external_lex_state = 2},
- [124] = {.lex_state = 144, .external_lex_state = 2},
- [125] = {.lex_state = 144, .external_lex_state = 2},
- [126] = {.lex_state = 144, .external_lex_state = 2},
- [127] = {.lex_state = 144, .external_lex_state = 2},
- [128] = {.lex_state = 6, .external_lex_state = 2},
- [129] = {.lex_state = 144, .external_lex_state = 2},
- [130] = {.lex_state = 144, .external_lex_state = 2},
- [131] = {.lex_state = 144, .external_lex_state = 2},
- [132] = {.lex_state = 144, .external_lex_state = 2},
- [133] = {.lex_state = 144, .external_lex_state = 2},
- [134] = {.lex_state = 144, .external_lex_state = 2},
- [135] = {.lex_state = 144, .external_lex_state = 2},
- [136] = {.lex_state = 6, .external_lex_state = 2},
- [137] = {.lex_state = 144, .external_lex_state = 2},
- [138] = {.lex_state = 144, .external_lex_state = 2},
- [139] = {.lex_state = 144, .external_lex_state = 2},
- [140] = {.lex_state = 144, .external_lex_state = 2},
- [141] = {.lex_state = 144, .external_lex_state = 2},
- [142] = {.lex_state = 144, .external_lex_state = 2},
- [143] = {.lex_state = 144, .external_lex_state = 2},
- [144] = {.lex_state = 144, .external_lex_state = 2},
- [145] = {.lex_state = 144, .external_lex_state = 2},
- [146] = {.lex_state = 144, .external_lex_state = 2},
- [147] = {.lex_state = 144, .external_lex_state = 2},
- [148] = {.lex_state = 144, .external_lex_state = 2},
- [149] = {.lex_state = 144, .external_lex_state = 2},
- [150] = {.lex_state = 144, .external_lex_state = 2},
- [151] = {.lex_state = 144, .external_lex_state = 2},
- [152] = {.lex_state = 144, .external_lex_state = 2},
- [153] = {.lex_state = 144, .external_lex_state = 2},
- [154] = {.lex_state = 6, .external_lex_state = 2},
- [155] = {.lex_state = 144, .external_lex_state = 2},
- [156] = {.lex_state = 144, .external_lex_state = 2},
- [157] = {.lex_state = 144, .external_lex_state = 2},
- [158] = {.lex_state = 144, .external_lex_state = 2},
- [159] = {.lex_state = 144, .external_lex_state = 2},
- [160] = {.lex_state = 6, .external_lex_state = 2},
- [161] = {.lex_state = 144, .external_lex_state = 2},
- [162] = {.lex_state = 144, .external_lex_state = 2},
- [163] = {.lex_state = 144, .external_lex_state = 2},
- [164] = {.lex_state = 144, .external_lex_state = 2},
- [165] = {.lex_state = 144, .external_lex_state = 2},
- [166] = {.lex_state = 144, .external_lex_state = 2},
- [167] = {.lex_state = 144, .external_lex_state = 2},
- [168] = {.lex_state = 144, .external_lex_state = 2},
- [169] = {.lex_state = 144, .external_lex_state = 2},
- [170] = {.lex_state = 144, .external_lex_state = 2},
- [171] = {.lex_state = 6, .external_lex_state = 2},
- [172] = {.lex_state = 144, .external_lex_state = 2},
- [173] = {.lex_state = 144, .external_lex_state = 2},
- [174] = {.lex_state = 144, .external_lex_state = 2},
- [175] = {.lex_state = 144, .external_lex_state = 2},
- [176] = {.lex_state = 144, .external_lex_state = 2},
- [177] = {.lex_state = 144, .external_lex_state = 2},
- [178] = {.lex_state = 144, .external_lex_state = 2},
- [179] = {.lex_state = 144, .external_lex_state = 2},
- [180] = {.lex_state = 144, .external_lex_state = 2},
- [181] = {.lex_state = 144, .external_lex_state = 2},
- [182] = {.lex_state = 144, .external_lex_state = 2},
- [183] = {.lex_state = 144, .external_lex_state = 2},
- [184] = {.lex_state = 144, .external_lex_state = 2},
- [185] = {.lex_state = 144, .external_lex_state = 2},
- [186] = {.lex_state = 144, .external_lex_state = 2},
- [187] = {.lex_state = 144, .external_lex_state = 2},
- [188] = {.lex_state = 144, .external_lex_state = 2},
- [189] = {.lex_state = 144, .external_lex_state = 2},
- [190] = {.lex_state = 144, .external_lex_state = 2},
- [191] = {.lex_state = 144, .external_lex_state = 2},
- [192] = {.lex_state = 144, .external_lex_state = 2},
- [193] = {.lex_state = 144, .external_lex_state = 2},
- [194] = {.lex_state = 144, .external_lex_state = 2},
- [195] = {.lex_state = 144, .external_lex_state = 2},
- [196] = {.lex_state = 144, .external_lex_state = 2},
- [197] = {.lex_state = 144, .external_lex_state = 2},
- [198] = {.lex_state = 144, .external_lex_state = 2},
- [199] = {.lex_state = 144, .external_lex_state = 2},
- [200] = {.lex_state = 144, .external_lex_state = 2},
- [201] = {.lex_state = 144, .external_lex_state = 2},
- [202] = {.lex_state = 144, .external_lex_state = 2},
- [203] = {.lex_state = 144, .external_lex_state = 2},
- [204] = {.lex_state = 144, .external_lex_state = 2},
- [205] = {.lex_state = 144, .external_lex_state = 2},
- [206] = {.lex_state = 144, .external_lex_state = 2},
- [207] = {.lex_state = 144, .external_lex_state = 2},
- [208] = {.lex_state = 144, .external_lex_state = 2},
- [209] = {.lex_state = 144, .external_lex_state = 2},
- [210] = {.lex_state = 144, .external_lex_state = 2},
- [211] = {.lex_state = 144, .external_lex_state = 2},
- [212] = {.lex_state = 144, .external_lex_state = 2},
- [213] = {.lex_state = 144, .external_lex_state = 2},
- [214] = {.lex_state = 144, .external_lex_state = 2},
- [215] = {.lex_state = 144, .external_lex_state = 2},
- [216] = {.lex_state = 144, .external_lex_state = 2},
- [217] = {.lex_state = 144, .external_lex_state = 2},
- [218] = {.lex_state = 144, .external_lex_state = 2},
- [219] = {.lex_state = 144, .external_lex_state = 2},
- [220] = {.lex_state = 144, .external_lex_state = 2},
- [221] = {.lex_state = 144, .external_lex_state = 2},
- [222] = {.lex_state = 144, .external_lex_state = 2},
- [223] = {.lex_state = 144, .external_lex_state = 2},
- [224] = {.lex_state = 144, .external_lex_state = 2},
- [225] = {.lex_state = 144, .external_lex_state = 2},
- [226] = {.lex_state = 144, .external_lex_state = 2},
- [227] = {.lex_state = 144, .external_lex_state = 2},
- [228] = {.lex_state = 144, .external_lex_state = 2},
- [229] = {.lex_state = 144, .external_lex_state = 2},
- [230] = {.lex_state = 144, .external_lex_state = 2},
- [231] = {.lex_state = 144, .external_lex_state = 2},
- [232] = {.lex_state = 144, .external_lex_state = 2},
- [233] = {.lex_state = 144, .external_lex_state = 2},
- [234] = {.lex_state = 144, .external_lex_state = 2},
- [235] = {.lex_state = 144, .external_lex_state = 2},
- [236] = {.lex_state = 144, .external_lex_state = 2},
- [237] = {.lex_state = 144, .external_lex_state = 2},
- [238] = {.lex_state = 144, .external_lex_state = 2},
- [239] = {.lex_state = 144, .external_lex_state = 2},
- [240] = {.lex_state = 144, .external_lex_state = 2},
- [241] = {.lex_state = 144, .external_lex_state = 2},
- [242] = {.lex_state = 144, .external_lex_state = 2},
- [243] = {.lex_state = 144, .external_lex_state = 2},
- [244] = {.lex_state = 144, .external_lex_state = 2},
- [245] = {.lex_state = 144, .external_lex_state = 2},
- [246] = {.lex_state = 144, .external_lex_state = 2},
- [247] = {.lex_state = 144, .external_lex_state = 2},
- [248] = {.lex_state = 144, .external_lex_state = 2},
- [249] = {.lex_state = 144, .external_lex_state = 2},
- [250] = {.lex_state = 144, .external_lex_state = 2},
- [251] = {.lex_state = 144, .external_lex_state = 2},
- [252] = {.lex_state = 144, .external_lex_state = 2},
- [253] = {.lex_state = 144, .external_lex_state = 2},
- [254] = {.lex_state = 144, .external_lex_state = 2},
- [255] = {.lex_state = 144, .external_lex_state = 2},
- [256] = {.lex_state = 144, .external_lex_state = 2},
- [257] = {.lex_state = 144, .external_lex_state = 2},
- [258] = {.lex_state = 144, .external_lex_state = 2},
- [259] = {.lex_state = 144, .external_lex_state = 2},
- [260] = {.lex_state = 144, .external_lex_state = 2},
- [261] = {.lex_state = 144, .external_lex_state = 2},
- [262] = {.lex_state = 144, .external_lex_state = 2},
- [263] = {.lex_state = 144, .external_lex_state = 2},
- [264] = {.lex_state = 144, .external_lex_state = 2},
- [265] = {.lex_state = 144, .external_lex_state = 2},
- [266] = {.lex_state = 144, .external_lex_state = 2},
- [267] = {.lex_state = 144, .external_lex_state = 2},
- [268] = {.lex_state = 144, .external_lex_state = 2},
- [269] = {.lex_state = 144, .external_lex_state = 2},
- [270] = {.lex_state = 144, .external_lex_state = 2},
- [271] = {.lex_state = 144, .external_lex_state = 2},
- [272] = {.lex_state = 144, .external_lex_state = 2},
- [273] = {.lex_state = 144, .external_lex_state = 2},
- [274] = {.lex_state = 144, .external_lex_state = 2},
- [275] = {.lex_state = 144, .external_lex_state = 2},
- [276] = {.lex_state = 144, .external_lex_state = 2},
- [277] = {.lex_state = 144, .external_lex_state = 2},
- [278] = {.lex_state = 144, .external_lex_state = 2},
- [279] = {.lex_state = 144, .external_lex_state = 2},
- [280] = {.lex_state = 144, .external_lex_state = 2},
- [281] = {.lex_state = 144, .external_lex_state = 2},
- [282] = {.lex_state = 144, .external_lex_state = 2},
- [283] = {.lex_state = 144, .external_lex_state = 2},
- [284] = {.lex_state = 144, .external_lex_state = 2},
- [285] = {.lex_state = 144, .external_lex_state = 2},
- [286] = {.lex_state = 144, .external_lex_state = 2},
- [287] = {.lex_state = 144, .external_lex_state = 2},
- [288] = {.lex_state = 144, .external_lex_state = 2},
- [289] = {.lex_state = 144, .external_lex_state = 2},
- [290] = {.lex_state = 144, .external_lex_state = 2},
- [291] = {.lex_state = 144, .external_lex_state = 2},
- [292] = {.lex_state = 144, .external_lex_state = 2},
- [293] = {.lex_state = 144, .external_lex_state = 2},
- [294] = {.lex_state = 144, .external_lex_state = 2},
- [295] = {.lex_state = 144, .external_lex_state = 2},
- [296] = {.lex_state = 144, .external_lex_state = 2},
- [297] = {.lex_state = 7, .external_lex_state = 4},
- [298] = {.lex_state = 7, .external_lex_state = 4},
- [299] = {.lex_state = 7, .external_lex_state = 4},
- [300] = {.lex_state = 7, .external_lex_state = 4},
- [301] = {.lex_state = 7, .external_lex_state = 4},
- [302] = {.lex_state = 7, .external_lex_state = 4},
- [303] = {.lex_state = 7, .external_lex_state = 4},
- [304] = {.lex_state = 7, .external_lex_state = 4},
- [305] = {.lex_state = 7, .external_lex_state = 4},
- [306] = {.lex_state = 7, .external_lex_state = 4},
- [307] = {.lex_state = 7, .external_lex_state = 4},
- [308] = {.lex_state = 7, .external_lex_state = 4},
- [309] = {.lex_state = 7, .external_lex_state = 4},
- [310] = {.lex_state = 7, .external_lex_state = 4},
- [311] = {.lex_state = 7, .external_lex_state = 3},
- [312] = {.lex_state = 7, .external_lex_state = 3},
- [313] = {.lex_state = 144, .external_lex_state = 2},
- [314] = {.lex_state = 144, .external_lex_state = 5},
- [315] = {.lex_state = 144, .external_lex_state = 5},
- [316] = {.lex_state = 7, .external_lex_state = 4},
- [317] = {.lex_state = 7, .external_lex_state = 4},
- [318] = {.lex_state = 7, .external_lex_state = 4},
- [319] = {.lex_state = 7, .external_lex_state = 3},
- [320] = {.lex_state = 7, .external_lex_state = 4},
- [321] = {.lex_state = 144, .external_lex_state = 2},
- [322] = {.lex_state = 144, .external_lex_state = 2},
- [323] = {.lex_state = 7, .external_lex_state = 4},
- [324] = {.lex_state = 7, .external_lex_state = 4},
- [325] = {.lex_state = 7, .external_lex_state = 4},
- [326] = {.lex_state = 7, .external_lex_state = 3},
- [327] = {.lex_state = 7, .external_lex_state = 3},
- [328] = {.lex_state = 7, .external_lex_state = 4},
- [329] = {.lex_state = 7, .external_lex_state = 4},
- [330] = {.lex_state = 7, .external_lex_state = 3},
- [331] = {.lex_state = 144, .external_lex_state = 2},
- [332] = {.lex_state = 7, .external_lex_state = 3},
- [333] = {.lex_state = 144, .external_lex_state = 5},
- [334] = {.lex_state = 144, .external_lex_state = 5},
- [335] = {.lex_state = 144, .external_lex_state = 5},
- [336] = {.lex_state = 144, .external_lex_state = 5},
- [337] = {.lex_state = 144, .external_lex_state = 2},
- [338] = {.lex_state = 144, .external_lex_state = 5},
- [339] = {.lex_state = 144, .external_lex_state = 5},
- [340] = {.lex_state = 144, .external_lex_state = 5},
- [341] = {.lex_state = 144, .external_lex_state = 5},
- [342] = {.lex_state = 144, .external_lex_state = 5},
- [343] = {.lex_state = 144, .external_lex_state = 5},
- [344] = {.lex_state = 7, .external_lex_state = 3},
- [345] = {.lex_state = 144, .external_lex_state = 5},
- [346] = {.lex_state = 144, .external_lex_state = 2},
- [347] = {.lex_state = 144, .external_lex_state = 5},
- [348] = {.lex_state = 144, .external_lex_state = 2},
- [349] = {.lex_state = 144, .external_lex_state = 5},
- [350] = {.lex_state = 144, .external_lex_state = 5},
- [351] = {.lex_state = 144, .external_lex_state = 2},
- [352] = {.lex_state = 7, .external_lex_state = 3},
- [353] = {.lex_state = 144, .external_lex_state = 5},
- [354] = {.lex_state = 144, .external_lex_state = 5},
- [355] = {.lex_state = 7, .external_lex_state = 4},
- [356] = {.lex_state = 7, .external_lex_state = 4},
- [357] = {.lex_state = 144, .external_lex_state = 2},
- [358] = {.lex_state = 7, .external_lex_state = 3},
- [359] = {.lex_state = 144, .external_lex_state = 2},
- [360] = {.lex_state = 144, .external_lex_state = 2},
- [361] = {.lex_state = 144, .external_lex_state = 2},
- [362] = {.lex_state = 144, .external_lex_state = 2},
- [363] = {.lex_state = 144, .external_lex_state = 2},
- [364] = {.lex_state = 144, .external_lex_state = 2},
- [365] = {.lex_state = 144, .external_lex_state = 2},
- [366] = {.lex_state = 144, .external_lex_state = 2},
- [367] = {.lex_state = 144, .external_lex_state = 2},
- [368] = {.lex_state = 144, .external_lex_state = 2},
- [369] = {.lex_state = 144, .external_lex_state = 2},
- [370] = {.lex_state = 144, .external_lex_state = 2},
- [371] = {.lex_state = 144, .external_lex_state = 2},
- [372] = {.lex_state = 144, .external_lex_state = 2},
- [373] = {.lex_state = 144, .external_lex_state = 2},
- [374] = {.lex_state = 144, .external_lex_state = 2},
- [375] = {.lex_state = 144, .external_lex_state = 2},
- [376] = {.lex_state = 144, .external_lex_state = 2},
- [377] = {.lex_state = 144, .external_lex_state = 2},
- [378] = {.lex_state = 144, .external_lex_state = 2},
- [379] = {.lex_state = 144, .external_lex_state = 2},
- [380] = {.lex_state = 144, .external_lex_state = 2},
- [381] = {.lex_state = 144, .external_lex_state = 2},
- [382] = {.lex_state = 144, .external_lex_state = 2},
- [383] = {.lex_state = 144, .external_lex_state = 2},
- [384] = {.lex_state = 144, .external_lex_state = 2},
- [385] = {.lex_state = 144, .external_lex_state = 2},
- [386] = {.lex_state = 144, .external_lex_state = 2},
- [387] = {.lex_state = 144, .external_lex_state = 2},
- [388] = {.lex_state = 144, .external_lex_state = 2},
- [389] = {.lex_state = 144, .external_lex_state = 2},
- [390] = {.lex_state = 144, .external_lex_state = 2},
- [391] = {.lex_state = 144, .external_lex_state = 2},
- [392] = {.lex_state = 144, .external_lex_state = 2},
- [393] = {.lex_state = 144, .external_lex_state = 2},
- [394] = {.lex_state = 144, .external_lex_state = 2},
- [395] = {.lex_state = 144, .external_lex_state = 2},
- [396] = {.lex_state = 144, .external_lex_state = 2},
- [397] = {.lex_state = 144, .external_lex_state = 2},
- [398] = {.lex_state = 144, .external_lex_state = 2},
- [399] = {.lex_state = 144, .external_lex_state = 2},
- [400] = {.lex_state = 144, .external_lex_state = 2},
- [401] = {.lex_state = 7, .external_lex_state = 4},
- [402] = {.lex_state = 144, .external_lex_state = 2},
- [403] = {.lex_state = 144, .external_lex_state = 2},
- [404] = {.lex_state = 144, .external_lex_state = 2},
- [405] = {.lex_state = 144, .external_lex_state = 2},
- [406] = {.lex_state = 144, .external_lex_state = 2},
- [407] = {.lex_state = 144, .external_lex_state = 2},
- [408] = {.lex_state = 144, .external_lex_state = 2},
- [409] = {.lex_state = 144, .external_lex_state = 2},
- [410] = {.lex_state = 144, .external_lex_state = 2},
- [411] = {.lex_state = 144, .external_lex_state = 2},
- [412] = {.lex_state = 7, .external_lex_state = 3},
- [413] = {.lex_state = 144, .external_lex_state = 2},
- [414] = {.lex_state = 144, .external_lex_state = 2},
- [415] = {.lex_state = 144, .external_lex_state = 2},
- [416] = {.lex_state = 144, .external_lex_state = 2},
- [417] = {.lex_state = 144, .external_lex_state = 2},
- [418] = {.lex_state = 144, .external_lex_state = 2},
- [419] = {.lex_state = 144, .external_lex_state = 2},
- [420] = {.lex_state = 7, .external_lex_state = 4},
- [421] = {.lex_state = 144, .external_lex_state = 2},
- [422] = {.lex_state = 144, .external_lex_state = 2},
- [423] = {.lex_state = 144, .external_lex_state = 2},
- [424] = {.lex_state = 144, .external_lex_state = 2},
- [425] = {.lex_state = 7, .external_lex_state = 3},
- [426] = {.lex_state = 144, .external_lex_state = 2},
- [427] = {.lex_state = 7, .external_lex_state = 3},
- [428] = {.lex_state = 7, .external_lex_state = 4},
- [429] = {.lex_state = 7, .external_lex_state = 3},
- [430] = {.lex_state = 7, .external_lex_state = 3},
- [431] = {.lex_state = 7, .external_lex_state = 3},
- [432] = {.lex_state = 7, .external_lex_state = 4},
- [433] = {.lex_state = 7, .external_lex_state = 4},
- [434] = {.lex_state = 7, .external_lex_state = 4},
- [435] = {.lex_state = 7, .external_lex_state = 3},
- [436] = {.lex_state = 7, .external_lex_state = 3},
- [437] = {.lex_state = 7, .external_lex_state = 3},
- [438] = {.lex_state = 7, .external_lex_state = 3},
- [439] = {.lex_state = 7, .external_lex_state = 3},
- [440] = {.lex_state = 7, .external_lex_state = 3},
- [441] = {.lex_state = 7, .external_lex_state = 3},
- [442] = {.lex_state = 7, .external_lex_state = 3},
- [443] = {.lex_state = 7, .external_lex_state = 3},
- [444] = {.lex_state = 7, .external_lex_state = 3},
- [445] = {.lex_state = 7, .external_lex_state = 3},
- [446] = {.lex_state = 144, .external_lex_state = 2},
- [447] = {.lex_state = 144, .external_lex_state = 2},
- [448] = {.lex_state = 144, .external_lex_state = 2},
- [449] = {.lex_state = 144, .external_lex_state = 2},
- [450] = {.lex_state = 144, .external_lex_state = 2},
- [451] = {.lex_state = 144, .external_lex_state = 2},
- [452] = {.lex_state = 144, .external_lex_state = 2},
- [453] = {.lex_state = 144, .external_lex_state = 2},
- [454] = {.lex_state = 144, .external_lex_state = 2},
- [455] = {.lex_state = 7, .external_lex_state = 4},
- [456] = {.lex_state = 7, .external_lex_state = 4},
- [457] = {.lex_state = 7, .external_lex_state = 4},
- [458] = {.lex_state = 7, .external_lex_state = 3},
- [459] = {.lex_state = 7, .external_lex_state = 4},
- [460] = {.lex_state = 7, .external_lex_state = 3},
- [461] = {.lex_state = 7, .external_lex_state = 4},
- [462] = {.lex_state = 7, .external_lex_state = 4},
- [463] = {.lex_state = 7, .external_lex_state = 4},
- [464] = {.lex_state = 7, .external_lex_state = 3},
- [465] = {.lex_state = 7, .external_lex_state = 4},
- [466] = {.lex_state = 7, .external_lex_state = 4},
- [467] = {.lex_state = 7, .external_lex_state = 4},
- [468] = {.lex_state = 7, .external_lex_state = 4},
- [469] = {.lex_state = 7, .external_lex_state = 3},
- [470] = {.lex_state = 7, .external_lex_state = 4},
- [471] = {.lex_state = 7, .external_lex_state = 4},
- [472] = {.lex_state = 7, .external_lex_state = 3},
- [473] = {.lex_state = 7, .external_lex_state = 4},
- [474] = {.lex_state = 7, .external_lex_state = 3},
- [475] = {.lex_state = 7, .external_lex_state = 4},
- [476] = {.lex_state = 7, .external_lex_state = 4},
- [477] = {.lex_state = 7, .external_lex_state = 4},
- [478] = {.lex_state = 7, .external_lex_state = 4},
- [479] = {.lex_state = 7, .external_lex_state = 4},
- [480] = {.lex_state = 7, .external_lex_state = 4},
- [481] = {.lex_state = 7, .external_lex_state = 3},
- [482] = {.lex_state = 7, .external_lex_state = 3},
- [483] = {.lex_state = 7, .external_lex_state = 3},
- [484] = {.lex_state = 7, .external_lex_state = 4},
- [485] = {.lex_state = 7, .external_lex_state = 3},
- [486] = {.lex_state = 7, .external_lex_state = 4},
- [487] = {.lex_state = 7, .external_lex_state = 3},
- [488] = {.lex_state = 7, .external_lex_state = 3},
- [489] = {.lex_state = 7, .external_lex_state = 3},
- [490] = {.lex_state = 7, .external_lex_state = 3},
- [491] = {.lex_state = 7, .external_lex_state = 3},
- [492] = {.lex_state = 7, .external_lex_state = 3},
- [493] = {.lex_state = 7, .external_lex_state = 3},
- [494] = {.lex_state = 7, .external_lex_state = 3},
- [495] = {.lex_state = 7, .external_lex_state = 3},
- [496] = {.lex_state = 7, .external_lex_state = 3},
- [497] = {.lex_state = 7, .external_lex_state = 3},
- [498] = {.lex_state = 7, .external_lex_state = 3},
- [499] = {.lex_state = 7, .external_lex_state = 3},
- [500] = {.lex_state = 7, .external_lex_state = 3},
- [501] = {.lex_state = 7, .external_lex_state = 3},
- [502] = {.lex_state = 7, .external_lex_state = 3},
- [503] = {.lex_state = 7, .external_lex_state = 3},
- [504] = {.lex_state = 7, .external_lex_state = 3},
- [505] = {.lex_state = 8, .external_lex_state = 4},
- [506] = {.lex_state = 8, .external_lex_state = 3},
- [507] = {.lex_state = 8, .external_lex_state = 3},
- [508] = {.lex_state = 8, .external_lex_state = 3},
- [509] = {.lex_state = 8, .external_lex_state = 3},
- [510] = {.lex_state = 8, .external_lex_state = 4},
- [511] = {.lex_state = 8, .external_lex_state = 3},
- [512] = {.lex_state = 8, .external_lex_state = 3},
- [513] = {.lex_state = 8, .external_lex_state = 4},
- [514] = {.lex_state = 8, .external_lex_state = 3},
- [515] = {.lex_state = 8, .external_lex_state = 3},
- [516] = {.lex_state = 8, .external_lex_state = 3},
- [517] = {.lex_state = 8, .external_lex_state = 3},
- [518] = {.lex_state = 8, .external_lex_state = 3},
- [519] = {.lex_state = 8, .external_lex_state = 3},
- [520] = {.lex_state = 8, .external_lex_state = 3},
- [521] = {.lex_state = 8, .external_lex_state = 3},
- [522] = {.lex_state = 8, .external_lex_state = 3},
- [523] = {.lex_state = 8, .external_lex_state = 3},
- [524] = {.lex_state = 8, .external_lex_state = 3},
- [525] = {.lex_state = 8, .external_lex_state = 3},
- [526] = {.lex_state = 8, .external_lex_state = 3},
- [527] = {.lex_state = 8, .external_lex_state = 3},
- [528] = {.lex_state = 8, .external_lex_state = 3},
- [529] = {.lex_state = 8, .external_lex_state = 3},
- [530] = {.lex_state = 8, .external_lex_state = 3},
- [531] = {.lex_state = 8, .external_lex_state = 3},
- [532] = {.lex_state = 8, .external_lex_state = 3},
- [533] = {.lex_state = 8, .external_lex_state = 3},
- [534] = {.lex_state = 8, .external_lex_state = 3},
- [535] = {.lex_state = 8, .external_lex_state = 3},
- [536] = {.lex_state = 8, .external_lex_state = 3},
- [537] = {.lex_state = 8, .external_lex_state = 3},
- [538] = {.lex_state = 8, .external_lex_state = 3},
- [539] = {.lex_state = 8, .external_lex_state = 3},
- [540] = {.lex_state = 8, .external_lex_state = 3},
- [541] = {.lex_state = 8, .external_lex_state = 3},
- [542] = {.lex_state = 8, .external_lex_state = 3},
- [543] = {.lex_state = 8, .external_lex_state = 3},
- [544] = {.lex_state = 8, .external_lex_state = 3},
- [545] = {.lex_state = 8, .external_lex_state = 3},
- [546] = {.lex_state = 8, .external_lex_state = 3},
- [547] = {.lex_state = 8, .external_lex_state = 3},
- [548] = {.lex_state = 8, .external_lex_state = 3},
- [549] = {.lex_state = 8, .external_lex_state = 3},
- [550] = {.lex_state = 8, .external_lex_state = 3},
- [551] = {.lex_state = 8, .external_lex_state = 3},
- [552] = {.lex_state = 8, .external_lex_state = 3},
- [553] = {.lex_state = 8, .external_lex_state = 3},
- [554] = {.lex_state = 9, .external_lex_state = 3},
- [555] = {.lex_state = 8, .external_lex_state = 3},
- [556] = {.lex_state = 8, .external_lex_state = 3},
- [557] = {.lex_state = 8, .external_lex_state = 3},
- [558] = {.lex_state = 8, .external_lex_state = 3},
- [559] = {.lex_state = 8, .external_lex_state = 3},
- [560] = {.lex_state = 8, .external_lex_state = 3},
- [561] = {.lex_state = 8, .external_lex_state = 3},
- [562] = {.lex_state = 8, .external_lex_state = 3},
- [563] = {.lex_state = 8, .external_lex_state = 3},
- [564] = {.lex_state = 8, .external_lex_state = 3},
- [565] = {.lex_state = 8, .external_lex_state = 3},
- [566] = {.lex_state = 8, .external_lex_state = 3},
- [567] = {.lex_state = 8, .external_lex_state = 3},
- [568] = {.lex_state = 8, .external_lex_state = 3},
- [569] = {.lex_state = 8, .external_lex_state = 3},
- [570] = {.lex_state = 8, .external_lex_state = 3},
- [571] = {.lex_state = 8, .external_lex_state = 3},
- [572] = {.lex_state = 8, .external_lex_state = 3},
- [573] = {.lex_state = 8, .external_lex_state = 3},
- [574] = {.lex_state = 8, .external_lex_state = 3},
- [575] = {.lex_state = 8, .external_lex_state = 3},
- [576] = {.lex_state = 8, .external_lex_state = 3},
- [577] = {.lex_state = 8, .external_lex_state = 3},
- [578] = {.lex_state = 8, .external_lex_state = 3},
- [579] = {.lex_state = 8, .external_lex_state = 3},
- [580] = {.lex_state = 8, .external_lex_state = 4},
- [581] = {.lex_state = 8, .external_lex_state = 3},
- [582] = {.lex_state = 8, .external_lex_state = 3},
- [583] = {.lex_state = 8, .external_lex_state = 4},
- [584] = {.lex_state = 8, .external_lex_state = 4},
- [585] = {.lex_state = 8, .external_lex_state = 4},
- [586] = {.lex_state = 8, .external_lex_state = 3},
- [587] = {.lex_state = 8, .external_lex_state = 3},
- [588] = {.lex_state = 8, .external_lex_state = 3},
- [589] = {.lex_state = 8, .external_lex_state = 3},
- [590] = {.lex_state = 8, .external_lex_state = 3},
- [591] = {.lex_state = 8, .external_lex_state = 3},
- [592] = {.lex_state = 8, .external_lex_state = 3},
- [593] = {.lex_state = 8, .external_lex_state = 3},
- [594] = {.lex_state = 8, .external_lex_state = 3},
- [595] = {.lex_state = 8, .external_lex_state = 3},
- [596] = {.lex_state = 8, .external_lex_state = 3},
- [597] = {.lex_state = 8, .external_lex_state = 3},
- [598] = {.lex_state = 8, .external_lex_state = 3},
- [599] = {.lex_state = 8, .external_lex_state = 3},
- [600] = {.lex_state = 8, .external_lex_state = 3},
- [601] = {.lex_state = 8, .external_lex_state = 3},
- [602] = {.lex_state = 8, .external_lex_state = 4},
- [603] = {.lex_state = 8, .external_lex_state = 4},
- [604] = {.lex_state = 8, .external_lex_state = 4},
- [605] = {.lex_state = 8, .external_lex_state = 3},
- [606] = {.lex_state = 8, .external_lex_state = 4},
- [607] = {.lex_state = 8, .external_lex_state = 3},
- [608] = {.lex_state = 8, .external_lex_state = 3},
- [609] = {.lex_state = 8, .external_lex_state = 3},
- [610] = {.lex_state = 8, .external_lex_state = 3},
- [611] = {.lex_state = 8, .external_lex_state = 3},
- [612] = {.lex_state = 8, .external_lex_state = 3},
- [613] = {.lex_state = 8, .external_lex_state = 3},
- [614] = {.lex_state = 8, .external_lex_state = 4},
- [615] = {.lex_state = 8, .external_lex_state = 4},
- [616] = {.lex_state = 8, .external_lex_state = 4},
- [617] = {.lex_state = 8, .external_lex_state = 4},
- [618] = {.lex_state = 8, .external_lex_state = 4},
- [619] = {.lex_state = 8, .external_lex_state = 4},
- [620] = {.lex_state = 8, .external_lex_state = 4},
- [621] = {.lex_state = 8, .external_lex_state = 3},
- [622] = {.lex_state = 8, .external_lex_state = 4},
- [623] = {.lex_state = 8, .external_lex_state = 4},
- [624] = {.lex_state = 8, .external_lex_state = 4},
- [625] = {.lex_state = 8, .external_lex_state = 4},
- [626] = {.lex_state = 8, .external_lex_state = 4},
- [627] = {.lex_state = 8, .external_lex_state = 4},
- [628] = {.lex_state = 8, .external_lex_state = 4},
- [629] = {.lex_state = 8, .external_lex_state = 4},
- [630] = {.lex_state = 8, .external_lex_state = 4},
- [631] = {.lex_state = 8, .external_lex_state = 4},
- [632] = {.lex_state = 8, .external_lex_state = 4},
- [633] = {.lex_state = 8, .external_lex_state = 4},
- [634] = {.lex_state = 8, .external_lex_state = 4},
- [635] = {.lex_state = 8, .external_lex_state = 3},
- [636] = {.lex_state = 8, .external_lex_state = 4},
- [637] = {.lex_state = 8, .external_lex_state = 4},
- [638] = {.lex_state = 8, .external_lex_state = 4},
- [639] = {.lex_state = 8, .external_lex_state = 4},
- [640] = {.lex_state = 8, .external_lex_state = 4},
- [641] = {.lex_state = 8, .external_lex_state = 4},
- [642] = {.lex_state = 8, .external_lex_state = 4},
- [643] = {.lex_state = 8, .external_lex_state = 4},
- [644] = {.lex_state = 8, .external_lex_state = 4},
- [645] = {.lex_state = 8, .external_lex_state = 4},
- [646] = {.lex_state = 8, .external_lex_state = 4},
- [647] = {.lex_state = 8, .external_lex_state = 4},
- [648] = {.lex_state = 8, .external_lex_state = 4},
- [649] = {.lex_state = 8, .external_lex_state = 4},
- [650] = {.lex_state = 8, .external_lex_state = 4},
- [651] = {.lex_state = 8, .external_lex_state = 4},
- [652] = {.lex_state = 8, .external_lex_state = 4},
- [653] = {.lex_state = 8, .external_lex_state = 4},
- [654] = {.lex_state = 8, .external_lex_state = 4},
- [655] = {.lex_state = 8, .external_lex_state = 4},
- [656] = {.lex_state = 8, .external_lex_state = 4},
- [657] = {.lex_state = 8, .external_lex_state = 4},
- [658] = {.lex_state = 8, .external_lex_state = 4},
- [659] = {.lex_state = 8, .external_lex_state = 4},
- [660] = {.lex_state = 8, .external_lex_state = 4},
- [661] = {.lex_state = 8, .external_lex_state = 4},
- [662] = {.lex_state = 8, .external_lex_state = 4},
- [663] = {.lex_state = 8, .external_lex_state = 4},
- [664] = {.lex_state = 8, .external_lex_state = 4},
- [665] = {.lex_state = 8, .external_lex_state = 4},
- [666] = {.lex_state = 8, .external_lex_state = 4},
- [667] = {.lex_state = 8, .external_lex_state = 4},
- [668] = {.lex_state = 8, .external_lex_state = 4},
- [669] = {.lex_state = 8, .external_lex_state = 4},
- [670] = {.lex_state = 8, .external_lex_state = 4},
- [671] = {.lex_state = 8, .external_lex_state = 4},
- [672] = {.lex_state = 8, .external_lex_state = 4},
- [673] = {.lex_state = 8, .external_lex_state = 4},
- [674] = {.lex_state = 8, .external_lex_state = 4},
- [675] = {.lex_state = 8, .external_lex_state = 4},
- [676] = {.lex_state = 8, .external_lex_state = 4},
- [677] = {.lex_state = 8, .external_lex_state = 4},
- [678] = {.lex_state = 8, .external_lex_state = 4},
- [679] = {.lex_state = 8, .external_lex_state = 4},
- [680] = {.lex_state = 8, .external_lex_state = 4},
- [681] = {.lex_state = 8, .external_lex_state = 4},
- [682] = {.lex_state = 8, .external_lex_state = 4},
- [683] = {.lex_state = 8, .external_lex_state = 4},
- [684] = {.lex_state = 8, .external_lex_state = 4},
- [685] = {.lex_state = 8, .external_lex_state = 4},
- [686] = {.lex_state = 8, .external_lex_state = 3},
- [687] = {.lex_state = 8, .external_lex_state = 4},
- [688] = {.lex_state = 8, .external_lex_state = 4},
- [689] = {.lex_state = 8, .external_lex_state = 4},
- [690] = {.lex_state = 8, .external_lex_state = 4},
- [691] = {.lex_state = 8, .external_lex_state = 4},
- [692] = {.lex_state = 8, .external_lex_state = 4},
- [693] = {.lex_state = 8, .external_lex_state = 4},
- [694] = {.lex_state = 8, .external_lex_state = 4},
- [695] = {.lex_state = 8, .external_lex_state = 4},
- [696] = {.lex_state = 8, .external_lex_state = 4},
- [697] = {.lex_state = 8, .external_lex_state = 4},
- [698] = {.lex_state = 8, .external_lex_state = 4},
- [699] = {.lex_state = 8, .external_lex_state = 4},
- [700] = {.lex_state = 8, .external_lex_state = 4},
- [701] = {.lex_state = 8, .external_lex_state = 4},
- [702] = {.lex_state = 8, .external_lex_state = 4},
- [703] = {.lex_state = 8, .external_lex_state = 4},
- [704] = {.lex_state = 8, .external_lex_state = 4},
- [705] = {.lex_state = 8, .external_lex_state = 4},
- [706] = {.lex_state = 8, .external_lex_state = 4},
- [707] = {.lex_state = 8, .external_lex_state = 4},
- [708] = {.lex_state = 8, .external_lex_state = 4},
- [709] = {.lex_state = 8, .external_lex_state = 4},
- [710] = {.lex_state = 8, .external_lex_state = 4},
- [711] = {.lex_state = 8, .external_lex_state = 4},
- [712] = {.lex_state = 8, .external_lex_state = 4},
- [713] = {.lex_state = 8, .external_lex_state = 4},
- [714] = {.lex_state = 8, .external_lex_state = 4},
- [715] = {.lex_state = 8, .external_lex_state = 4},
- [716] = {.lex_state = 8, .external_lex_state = 4},
- [717] = {.lex_state = 8, .external_lex_state = 4},
- [718] = {.lex_state = 8, .external_lex_state = 4},
- [719] = {.lex_state = 8, .external_lex_state = 4},
- [720] = {.lex_state = 8, .external_lex_state = 4},
- [721] = {.lex_state = 8, .external_lex_state = 4},
- [722] = {.lex_state = 8, .external_lex_state = 4},
- [723] = {.lex_state = 8, .external_lex_state = 4},
- [724] = {.lex_state = 8, .external_lex_state = 4},
- [725] = {.lex_state = 9, .external_lex_state = 4},
- [726] = {.lex_state = 8, .external_lex_state = 4},
- [727] = {.lex_state = 9, .external_lex_state = 4},
- [728] = {.lex_state = 8, .external_lex_state = 4},
- [729] = {.lex_state = 8, .external_lex_state = 3},
- [730] = {.lex_state = 8, .external_lex_state = 4},
- [731] = {.lex_state = 8, .external_lex_state = 3},
- [732] = {.lex_state = 8, .external_lex_state = 3},
- [733] = {.lex_state = 8, .external_lex_state = 3},
- [734] = {.lex_state = 8, .external_lex_state = 4},
- [735] = {.lex_state = 8, .external_lex_state = 4},
- [736] = {.lex_state = 8, .external_lex_state = 4},
- [737] = {.lex_state = 8, .external_lex_state = 4},
- [738] = {.lex_state = 8, .external_lex_state = 4},
- [739] = {.lex_state = 8, .external_lex_state = 4},
- [740] = {.lex_state = 8, .external_lex_state = 4},
- [741] = {.lex_state = 8, .external_lex_state = 4},
- [742] = {.lex_state = 8, .external_lex_state = 4},
- [743] = {.lex_state = 8, .external_lex_state = 4},
- [744] = {.lex_state = 8, .external_lex_state = 4},
- [745] = {.lex_state = 8, .external_lex_state = 4},
- [746] = {.lex_state = 8, .external_lex_state = 4},
- [747] = {.lex_state = 8, .external_lex_state = 4},
- [748] = {.lex_state = 8, .external_lex_state = 4},
- [749] = {.lex_state = 8, .external_lex_state = 4},
- [750] = {.lex_state = 8, .external_lex_state = 4},
- [751] = {.lex_state = 8, .external_lex_state = 4},
- [752] = {.lex_state = 8, .external_lex_state = 4},
- [753] = {.lex_state = 8, .external_lex_state = 4},
- [754] = {.lex_state = 8, .external_lex_state = 3},
- [755] = {.lex_state = 8, .external_lex_state = 4},
- [756] = {.lex_state = 8, .external_lex_state = 3},
- [757] = {.lex_state = 8, .external_lex_state = 3},
- [758] = {.lex_state = 8, .external_lex_state = 3},
- [759] = {.lex_state = 8, .external_lex_state = 3},
- [760] = {.lex_state = 8, .external_lex_state = 3},
- [761] = {.lex_state = 8, .external_lex_state = 3},
- [762] = {.lex_state = 8, .external_lex_state = 3},
- [763] = {.lex_state = 8, .external_lex_state = 3},
- [764] = {.lex_state = 8, .external_lex_state = 3},
- [765] = {.lex_state = 8, .external_lex_state = 3},
- [766] = {.lex_state = 8, .external_lex_state = 3},
- [767] = {.lex_state = 8, .external_lex_state = 3},
- [768] = {.lex_state = 8, .external_lex_state = 3},
- [769] = {.lex_state = 8, .external_lex_state = 3},
- [770] = {.lex_state = 8, .external_lex_state = 3},
- [771] = {.lex_state = 8, .external_lex_state = 3},
- [772] = {.lex_state = 8, .external_lex_state = 3},
- [773] = {.lex_state = 8, .external_lex_state = 3},
- [774] = {.lex_state = 8, .external_lex_state = 3},
- [775] = {.lex_state = 8, .external_lex_state = 3},
- [776] = {.lex_state = 8, .external_lex_state = 3},
- [777] = {.lex_state = 8, .external_lex_state = 3},
- [778] = {.lex_state = 8, .external_lex_state = 3},
- [779] = {.lex_state = 8, .external_lex_state = 3},
- [780] = {.lex_state = 8, .external_lex_state = 3},
- [781] = {.lex_state = 8, .external_lex_state = 3},
- [782] = {.lex_state = 8, .external_lex_state = 3},
- [783] = {.lex_state = 8, .external_lex_state = 3},
- [784] = {.lex_state = 8, .external_lex_state = 3},
- [785] = {.lex_state = 8, .external_lex_state = 3},
- [786] = {.lex_state = 8, .external_lex_state = 3},
- [787] = {.lex_state = 8, .external_lex_state = 3},
- [788] = {.lex_state = 8, .external_lex_state = 3},
- [789] = {.lex_state = 8, .external_lex_state = 3},
- [790] = {.lex_state = 8, .external_lex_state = 3},
- [791] = {.lex_state = 8, .external_lex_state = 3},
- [792] = {.lex_state = 8, .external_lex_state = 3},
- [793] = {.lex_state = 8, .external_lex_state = 3},
- [794] = {.lex_state = 8, .external_lex_state = 3},
- [795] = {.lex_state = 8, .external_lex_state = 3},
- [796] = {.lex_state = 8, .external_lex_state = 3},
- [797] = {.lex_state = 8, .external_lex_state = 3},
- [798] = {.lex_state = 8, .external_lex_state = 4},
- [799] = {.lex_state = 8, .external_lex_state = 3},
- [800] = {.lex_state = 8, .external_lex_state = 3},
- [801] = {.lex_state = 8, .external_lex_state = 3},
- [802] = {.lex_state = 8, .external_lex_state = 3},
- [803] = {.lex_state = 8, .external_lex_state = 3},
- [804] = {.lex_state = 8, .external_lex_state = 3},
- [805] = {.lex_state = 8, .external_lex_state = 3},
- [806] = {.lex_state = 8, .external_lex_state = 3},
- [807] = {.lex_state = 8, .external_lex_state = 3},
- [808] = {.lex_state = 8, .external_lex_state = 3},
- [809] = {.lex_state = 8, .external_lex_state = 3},
- [810] = {.lex_state = 8, .external_lex_state = 3},
- [811] = {.lex_state = 8, .external_lex_state = 3},
- [812] = {.lex_state = 8, .external_lex_state = 3},
- [813] = {.lex_state = 8, .external_lex_state = 3},
- [814] = {.lex_state = 8, .external_lex_state = 3},
- [815] = {.lex_state = 8, .external_lex_state = 3},
- [816] = {.lex_state = 8, .external_lex_state = 3},
- [817] = {.lex_state = 8, .external_lex_state = 3},
- [818] = {.lex_state = 8, .external_lex_state = 3},
- [819] = {.lex_state = 8, .external_lex_state = 3},
- [820] = {.lex_state = 8, .external_lex_state = 3},
- [821] = {.lex_state = 8, .external_lex_state = 3},
- [822] = {.lex_state = 8, .external_lex_state = 3},
- [823] = {.lex_state = 8, .external_lex_state = 3},
- [824] = {.lex_state = 8, .external_lex_state = 4},
- [825] = {.lex_state = 8, .external_lex_state = 3},
- [826] = {.lex_state = 8, .external_lex_state = 3},
- [827] = {.lex_state = 8, .external_lex_state = 3},
- [828] = {.lex_state = 8, .external_lex_state = 3},
- [829] = {.lex_state = 8, .external_lex_state = 3},
- [830] = {.lex_state = 8, .external_lex_state = 3},
- [831] = {.lex_state = 8, .external_lex_state = 3},
- [832] = {.lex_state = 5, .external_lex_state = 2},
- [833] = {.lex_state = 8, .external_lex_state = 4},
- [834] = {.lex_state = 8, .external_lex_state = 3},
- [835] = {.lex_state = 9, .external_lex_state = 3},
- [836] = {.lex_state = 5, .external_lex_state = 2},
- [837] = {.lex_state = 8, .external_lex_state = 3},
- [838] = {.lex_state = 8, .external_lex_state = 4},
- [839] = {.lex_state = 8, .external_lex_state = 3},
- [840] = {.lex_state = 5, .external_lex_state = 2},
- [841] = {.lex_state = 8, .external_lex_state = 3},
- [842] = {.lex_state = 5, .external_lex_state = 2},
- [843] = {.lex_state = 5, .external_lex_state = 2},
- [844] = {.lex_state = 5, .external_lex_state = 2},
- [845] = {.lex_state = 8, .external_lex_state = 3},
- [846] = {.lex_state = 8, .external_lex_state = 3},
- [847] = {.lex_state = 8, .external_lex_state = 3},
- [848] = {.lex_state = 8, .external_lex_state = 3},
- [849] = {.lex_state = 8, .external_lex_state = 3},
- [850] = {.lex_state = 8, .external_lex_state = 3},
- [851] = {.lex_state = 8, .external_lex_state = 3},
- [852] = {.lex_state = 8, .external_lex_state = 3},
- [853] = {.lex_state = 8, .external_lex_state = 3},
- [854] = {.lex_state = 8, .external_lex_state = 3},
- [855] = {.lex_state = 8, .external_lex_state = 3},
- [856] = {.lex_state = 8, .external_lex_state = 3},
- [857] = {.lex_state = 8, .external_lex_state = 3},
- [858] = {.lex_state = 8, .external_lex_state = 3},
- [859] = {.lex_state = 8, .external_lex_state = 3},
- [860] = {.lex_state = 8, .external_lex_state = 3},
- [861] = {.lex_state = 8, .external_lex_state = 3},
- [862] = {.lex_state = 8, .external_lex_state = 3},
- [863] = {.lex_state = 8, .external_lex_state = 3},
- [864] = {.lex_state = 8, .external_lex_state = 3},
- [865] = {.lex_state = 8, .external_lex_state = 3},
- [866] = {.lex_state = 8, .external_lex_state = 3},
- [867] = {.lex_state = 8, .external_lex_state = 3},
- [868] = {.lex_state = 8, .external_lex_state = 3},
- [869] = {.lex_state = 8, .external_lex_state = 3},
- [870] = {.lex_state = 8, .external_lex_state = 3},
- [871] = {.lex_state = 8, .external_lex_state = 3},
- [872] = {.lex_state = 8, .external_lex_state = 3},
- [873] = {.lex_state = 8, .external_lex_state = 3},
- [874] = {.lex_state = 8, .external_lex_state = 3},
- [875] = {.lex_state = 8, .external_lex_state = 3},
- [876] = {.lex_state = 8, .external_lex_state = 3},
- [877] = {.lex_state = 8, .external_lex_state = 3},
- [878] = {.lex_state = 5, .external_lex_state = 2},
- [879] = {.lex_state = 8, .external_lex_state = 3},
- [880] = {.lex_state = 8, .external_lex_state = 3},
- [881] = {.lex_state = 5, .external_lex_state = 2},
- [882] = {.lex_state = 5, .external_lex_state = 2},
- [883] = {.lex_state = 5, .external_lex_state = 2},
- [884] = {.lex_state = 5, .external_lex_state = 2},
- [885] = {.lex_state = 5, .external_lex_state = 2},
- [886] = {.lex_state = 5, .external_lex_state = 2},
- [887] = {.lex_state = 5, .external_lex_state = 2},
- [888] = {.lex_state = 5, .external_lex_state = 2},
- [889] = {.lex_state = 5, .external_lex_state = 2},
- [890] = {.lex_state = 5, .external_lex_state = 2},
- [891] = {.lex_state = 5, .external_lex_state = 2},
- [892] = {.lex_state = 144, .external_lex_state = 2},
- [893] = {.lex_state = 144, .external_lex_state = 2},
- [894] = {.lex_state = 144, .external_lex_state = 2},
- [895] = {.lex_state = 144, .external_lex_state = 2},
- [896] = {.lex_state = 144, .external_lex_state = 2},
- [897] = {.lex_state = 144, .external_lex_state = 2},
- [898] = {.lex_state = 144, .external_lex_state = 2},
- [899] = {.lex_state = 144, .external_lex_state = 2},
- [900] = {.lex_state = 144, .external_lex_state = 2},
- [901] = {.lex_state = 144, .external_lex_state = 2},
- [902] = {.lex_state = 144, .external_lex_state = 2},
- [903] = {.lex_state = 144, .external_lex_state = 2},
- [904] = {.lex_state = 144, .external_lex_state = 2},
- [905] = {.lex_state = 144, .external_lex_state = 2},
- [906] = {.lex_state = 144, .external_lex_state = 2},
- [907] = {.lex_state = 144, .external_lex_state = 5},
- [908] = {.lex_state = 144, .external_lex_state = 2},
- [909] = {.lex_state = 144, .external_lex_state = 2},
- [910] = {.lex_state = 144, .external_lex_state = 2},
- [911] = {.lex_state = 144, .external_lex_state = 2},
- [912] = {.lex_state = 144, .external_lex_state = 2},
- [913] = {.lex_state = 144, .external_lex_state = 2},
- [914] = {.lex_state = 144, .external_lex_state = 2},
- [915] = {.lex_state = 5, .external_lex_state = 2},
- [916] = {.lex_state = 144, .external_lex_state = 2},
- [917] = {.lex_state = 144, .external_lex_state = 2},
- [918] = {.lex_state = 144, .external_lex_state = 2},
- [919] = {.lex_state = 144, .external_lex_state = 5},
- [920] = {.lex_state = 144, .external_lex_state = 5},
- [921] = {.lex_state = 144, .external_lex_state = 2},
- [922] = {.lex_state = 144, .external_lex_state = 2},
- [923] = {.lex_state = 144, .external_lex_state = 2},
- [924] = {.lex_state = 144, .external_lex_state = 2},
- [925] = {.lex_state = 144, .external_lex_state = 5},
- [926] = {.lex_state = 5, .external_lex_state = 2},
- [927] = {.lex_state = 144, .external_lex_state = 5},
- [928] = {.lex_state = 5, .external_lex_state = 2},
- [929] = {.lex_state = 144, .external_lex_state = 5},
- [930] = {.lex_state = 5, .external_lex_state = 2},
- [931] = {.lex_state = 5, .external_lex_state = 2},
- [932] = {.lex_state = 5, .external_lex_state = 2},
- [933] = {.lex_state = 144, .external_lex_state = 5},
- [934] = {.lex_state = 144, .external_lex_state = 5},
- [935] = {.lex_state = 5, .external_lex_state = 2},
- [936] = {.lex_state = 11, .external_lex_state = 2},
- [937] = {.lex_state = 5, .external_lex_state = 2},
- [938] = {.lex_state = 5, .external_lex_state = 2},
- [939] = {.lex_state = 5, .external_lex_state = 2},
- [940] = {.lex_state = 5, .external_lex_state = 5},
- [941] = {.lex_state = 5, .external_lex_state = 2},
- [942] = {.lex_state = 5, .external_lex_state = 2},
- [943] = {.lex_state = 144, .external_lex_state = 2},
- [944] = {.lex_state = 5, .external_lex_state = 2},
- [945] = {.lex_state = 5, .external_lex_state = 2},
- [946] = {.lex_state = 5, .external_lex_state = 5},
- [947] = {.lex_state = 5, .external_lex_state = 2},
- [948] = {.lex_state = 5, .external_lex_state = 2},
- [949] = {.lex_state = 5, .external_lex_state = 2},
- [950] = {.lex_state = 5, .external_lex_state = 2},
- [951] = {.lex_state = 5, .external_lex_state = 2},
- [952] = {.lex_state = 5, .external_lex_state = 2},
- [953] = {.lex_state = 5, .external_lex_state = 2},
- [954] = {.lex_state = 5, .external_lex_state = 2},
- [955] = {.lex_state = 5, .external_lex_state = 2},
- [956] = {.lex_state = 5, .external_lex_state = 2},
- [957] = {.lex_state = 5, .external_lex_state = 2},
- [958] = {.lex_state = 5, .external_lex_state = 2},
- [959] = {.lex_state = 5, .external_lex_state = 2},
- [960] = {.lex_state = 5, .external_lex_state = 2},
- [961] = {.lex_state = 144, .external_lex_state = 5},
- [962] = {.lex_state = 5, .external_lex_state = 2},
- [963] = {.lex_state = 5, .external_lex_state = 2},
- [964] = {.lex_state = 144, .external_lex_state = 5},
- [965] = {.lex_state = 144, .external_lex_state = 5},
- [966] = {.lex_state = 144, .external_lex_state = 5},
- [967] = {.lex_state = 5, .external_lex_state = 2},
- [968] = {.lex_state = 5, .external_lex_state = 2},
- [969] = {.lex_state = 5, .external_lex_state = 2},
- [970] = {.lex_state = 5, .external_lex_state = 2},
- [971] = {.lex_state = 5, .external_lex_state = 2},
- [972] = {.lex_state = 5, .external_lex_state = 2},
- [973] = {.lex_state = 5, .external_lex_state = 2},
- [974] = {.lex_state = 5, .external_lex_state = 2},
- [975] = {.lex_state = 5, .external_lex_state = 2},
- [976] = {.lex_state = 5, .external_lex_state = 2},
- [977] = {.lex_state = 5, .external_lex_state = 2},
- [978] = {.lex_state = 5, .external_lex_state = 2},
- [979] = {.lex_state = 11, .external_lex_state = 2},
- [980] = {.lex_state = 144, .external_lex_state = 2},
- [981] = {.lex_state = 144, .external_lex_state = 2},
- [982] = {.lex_state = 144, .external_lex_state = 2},
- [983] = {.lex_state = 144, .external_lex_state = 2},
- [984] = {.lex_state = 144, .external_lex_state = 2},
- [985] = {.lex_state = 144, .external_lex_state = 2},
- [986] = {.lex_state = 144, .external_lex_state = 2},
- [987] = {.lex_state = 144, .external_lex_state = 2},
- [988] = {.lex_state = 144, .external_lex_state = 2},
- [989] = {.lex_state = 144, .external_lex_state = 2},
- [990] = {.lex_state = 5, .external_lex_state = 2},
- [991] = {.lex_state = 5, .external_lex_state = 2},
- [992] = {.lex_state = 5, .external_lex_state = 2},
- [993] = {.lex_state = 144, .external_lex_state = 2},
- [994] = {.lex_state = 144, .external_lex_state = 2},
- [995] = {.lex_state = 144, .external_lex_state = 2},
- [996] = {.lex_state = 144, .external_lex_state = 2},
- [997] = {.lex_state = 144, .external_lex_state = 2},
- [998] = {.lex_state = 144, .external_lex_state = 2},
- [999] = {.lex_state = 144, .external_lex_state = 2},
- [1000] = {.lex_state = 144, .external_lex_state = 2},
- [1001] = {.lex_state = 144, .external_lex_state = 2},
- [1002] = {.lex_state = 144, .external_lex_state = 2},
- [1003] = {.lex_state = 144, .external_lex_state = 2},
- [1004] = {.lex_state = 144, .external_lex_state = 2},
- [1005] = {.lex_state = 144, .external_lex_state = 2},
- [1006] = {.lex_state = 144, .external_lex_state = 2},
- [1007] = {.lex_state = 5, .external_lex_state = 2},
- [1008] = {.lex_state = 144, .external_lex_state = 2},
- [1009] = {.lex_state = 144, .external_lex_state = 2},
- [1010] = {.lex_state = 144, .external_lex_state = 2},
- [1011] = {.lex_state = 144, .external_lex_state = 2},
- [1012] = {.lex_state = 144, .external_lex_state = 2},
- [1013] = {.lex_state = 144, .external_lex_state = 2},
- [1014] = {.lex_state = 5, .external_lex_state = 2},
- [1015] = {.lex_state = 144, .external_lex_state = 2},
- [1016] = {.lex_state = 144, .external_lex_state = 2},
- [1017] = {.lex_state = 144, .external_lex_state = 2},
- [1018] = {.lex_state = 144, .external_lex_state = 2},
- [1019] = {.lex_state = 144, .external_lex_state = 2},
- [1020] = {.lex_state = 144, .external_lex_state = 2},
- [1021] = {.lex_state = 144, .external_lex_state = 2},
- [1022] = {.lex_state = 144, .external_lex_state = 2},
- [1023] = {.lex_state = 5, .external_lex_state = 2},
- [1024] = {.lex_state = 144, .external_lex_state = 2},
- [1025] = {.lex_state = 144, .external_lex_state = 2},
- [1026] = {.lex_state = 144, .external_lex_state = 2},
- [1027] = {.lex_state = 144, .external_lex_state = 2},
- [1028] = {.lex_state = 7, .external_lex_state = 2},
- [1029] = {.lex_state = 144, .external_lex_state = 2},
- [1030] = {.lex_state = 144, .external_lex_state = 2},
- [1031] = {.lex_state = 144, .external_lex_state = 2},
- [1032] = {.lex_state = 7, .external_lex_state = 2},
- [1033] = {.lex_state = 7, .external_lex_state = 2},
- [1034] = {.lex_state = 7, .external_lex_state = 2},
- [1035] = {.lex_state = 144, .external_lex_state = 2},
- [1036] = {.lex_state = 144, .external_lex_state = 2},
- [1037] = {.lex_state = 144, .external_lex_state = 2},
- [1038] = {.lex_state = 144, .external_lex_state = 2},
- [1039] = {.lex_state = 144, .external_lex_state = 2},
- [1040] = {.lex_state = 144, .external_lex_state = 2},
- [1041] = {.lex_state = 144, .external_lex_state = 2},
- [1042] = {.lex_state = 144, .external_lex_state = 2},
- [1043] = {.lex_state = 144, .external_lex_state = 2},
- [1044] = {.lex_state = 144, .external_lex_state = 2},
- [1045] = {.lex_state = 144, .external_lex_state = 2},
- [1046] = {.lex_state = 144, .external_lex_state = 2},
- [1047] = {.lex_state = 7, .external_lex_state = 2},
- [1048] = {.lex_state = 143, .external_lex_state = 2},
- [1049] = {.lex_state = 13, .external_lex_state = 2},
- [1050] = {.lex_state = 13, .external_lex_state = 2},
- [1051] = {.lex_state = 11, .external_lex_state = 6},
- [1052] = {.lex_state = 11, .external_lex_state = 6},
- [1053] = {.lex_state = 11, .external_lex_state = 6},
- [1054] = {.lex_state = 13, .external_lex_state = 2},
- [1055] = {.lex_state = 11, .external_lex_state = 6},
- [1056] = {.lex_state = 11, .external_lex_state = 6},
- [1057] = {.lex_state = 11, .external_lex_state = 6},
- [1058] = {.lex_state = 11, .external_lex_state = 6},
- [1059] = {.lex_state = 11, .external_lex_state = 6},
- [1060] = {.lex_state = 13, .external_lex_state = 2},
- [1061] = {.lex_state = 13, .external_lex_state = 2},
- [1062] = {.lex_state = 11, .external_lex_state = 6},
- [1063] = {.lex_state = 13, .external_lex_state = 2},
- [1064] = {.lex_state = 13, .external_lex_state = 2},
- [1065] = {.lex_state = 13, .external_lex_state = 2},
- [1066] = {.lex_state = 13, .external_lex_state = 2},
- [1067] = {.lex_state = 13, .external_lex_state = 2},
- [1068] = {.lex_state = 13, .external_lex_state = 2},
- [1069] = {.lex_state = 13, .external_lex_state = 2},
- [1070] = {.lex_state = 13, .external_lex_state = 2},
- [1071] = {.lex_state = 13, .external_lex_state = 2},
- [1072] = {.lex_state = 13, .external_lex_state = 2},
- [1073] = {.lex_state = 13, .external_lex_state = 2},
- [1074] = {.lex_state = 13, .external_lex_state = 2},
- [1075] = {.lex_state = 13, .external_lex_state = 2},
- [1076] = {.lex_state = 13, .external_lex_state = 2},
- [1077] = {.lex_state = 13, .external_lex_state = 2},
- [1078] = {.lex_state = 13, .external_lex_state = 2},
- [1079] = {.lex_state = 13, .external_lex_state = 2},
- [1080] = {.lex_state = 13, .external_lex_state = 2},
- [1081] = {.lex_state = 13, .external_lex_state = 2},
- [1082] = {.lex_state = 13, .external_lex_state = 2},
- [1083] = {.lex_state = 13, .external_lex_state = 2},
- [1084] = {.lex_state = 13, .external_lex_state = 2},
- [1085] = {.lex_state = 13, .external_lex_state = 2},
- [1086] = {.lex_state = 13, .external_lex_state = 2},
- [1087] = {.lex_state = 13, .external_lex_state = 2},
- [1088] = {.lex_state = 13, .external_lex_state = 2},
- [1089] = {.lex_state = 13, .external_lex_state = 2},
- [1090] = {.lex_state = 13, .external_lex_state = 2},
- [1091] = {.lex_state = 13, .external_lex_state = 2},
- [1092] = {.lex_state = 13, .external_lex_state = 2},
- [1093] = {.lex_state = 144, .external_lex_state = 2},
- [1094] = {.lex_state = 144, .external_lex_state = 2},
- [1095] = {.lex_state = 144, .external_lex_state = 2},
- [1096] = {.lex_state = 144, .external_lex_state = 2},
- [1097] = {.lex_state = 144, .external_lex_state = 2},
- [1098] = {.lex_state = 144, .external_lex_state = 2},
- [1099] = {.lex_state = 144, .external_lex_state = 2},
- [1100] = {.lex_state = 144, .external_lex_state = 2},
- [1101] = {.lex_state = 144, .external_lex_state = 2},
- [1102] = {.lex_state = 144, .external_lex_state = 2},
- [1103] = {.lex_state = 144, .external_lex_state = 5},
- [1104] = {.lex_state = 144, .external_lex_state = 2},
- [1105] = {.lex_state = 144, .external_lex_state = 2},
- [1106] = {.lex_state = 144, .external_lex_state = 2},
- [1107] = {.lex_state = 144, .external_lex_state = 2},
- [1108] = {.lex_state = 144, .external_lex_state = 2},
- [1109] = {.lex_state = 144, .external_lex_state = 5},
- [1110] = {.lex_state = 144, .external_lex_state = 2},
- [1111] = {.lex_state = 144, .external_lex_state = 2},
- [1112] = {.lex_state = 144, .external_lex_state = 2},
- [1113] = {.lex_state = 144, .external_lex_state = 2},
- [1114] = {.lex_state = 144, .external_lex_state = 2},
- [1115] = {.lex_state = 144, .external_lex_state = 2},
- [1116] = {.lex_state = 144, .external_lex_state = 2},
- [1117] = {.lex_state = 13, .external_lex_state = 2},
- [1118] = {.lex_state = 144, .external_lex_state = 2},
- [1119] = {.lex_state = 144, .external_lex_state = 2},
- [1120] = {.lex_state = 19, .external_lex_state = 7},
- [1121] = {.lex_state = 144, .external_lex_state = 2},
- [1122] = {.lex_state = 144, .external_lex_state = 5},
- [1123] = {.lex_state = 13, .external_lex_state = 2},
- [1124] = {.lex_state = 144, .external_lex_state = 2},
- [1125] = {.lex_state = 144, .external_lex_state = 5},
- [1126] = {.lex_state = 13, .external_lex_state = 2},
- [1127] = {.lex_state = 144, .external_lex_state = 5},
- [1128] = {.lex_state = 144, .external_lex_state = 5},
- [1129] = {.lex_state = 144, .external_lex_state = 5},
- [1130] = {.lex_state = 144, .external_lex_state = 2},
- [1131] = {.lex_state = 144, .external_lex_state = 5},
- [1132] = {.lex_state = 144, .external_lex_state = 5},
- [1133] = {.lex_state = 144, .external_lex_state = 5},
- [1134] = {.lex_state = 144, .external_lex_state = 2},
- [1135] = {.lex_state = 144, .external_lex_state = 2},
- [1136] = {.lex_state = 144, .external_lex_state = 5},
- [1137] = {.lex_state = 144, .external_lex_state = 2},
- [1138] = {.lex_state = 144, .external_lex_state = 5},
- [1139] = {.lex_state = 19, .external_lex_state = 7},
- [1140] = {.lex_state = 19, .external_lex_state = 7},
- [1141] = {.lex_state = 144, .external_lex_state = 2},
- [1142] = {.lex_state = 144, .external_lex_state = 2},
- [1143] = {.lex_state = 19, .external_lex_state = 7},
- [1144] = {.lex_state = 144, .external_lex_state = 2},
- [1145] = {.lex_state = 13, .external_lex_state = 2},
- [1146] = {.lex_state = 144, .external_lex_state = 2},
- [1147] = {.lex_state = 144, .external_lex_state = 5},
- [1148] = {.lex_state = 144, .external_lex_state = 5},
- [1149] = {.lex_state = 19, .external_lex_state = 7},
- [1150] = {.lex_state = 11, .external_lex_state = 6},
- [1151] = {.lex_state = 13, .external_lex_state = 2},
- [1152] = {.lex_state = 144, .external_lex_state = 2},
- [1153] = {.lex_state = 144, .external_lex_state = 2},
- [1154] = {.lex_state = 11, .external_lex_state = 6},
- [1155] = {.lex_state = 13, .external_lex_state = 2},
- [1156] = {.lex_state = 144, .external_lex_state = 2},
- [1157] = {.lex_state = 13, .external_lex_state = 2},
- [1158] = {.lex_state = 11, .external_lex_state = 6},
- [1159] = {.lex_state = 144, .external_lex_state = 2},
- [1160] = {.lex_state = 144, .external_lex_state = 2},
- [1161] = {.lex_state = 144, .external_lex_state = 2},
- [1162] = {.lex_state = 144, .external_lex_state = 2},
- [1163] = {.lex_state = 144, .external_lex_state = 5},
- [1164] = {.lex_state = 13, .external_lex_state = 2},
- [1165] = {.lex_state = 144, .external_lex_state = 5},
- [1166] = {.lex_state = 11, .external_lex_state = 6},
- [1167] = {.lex_state = 13, .external_lex_state = 2},
- [1168] = {.lex_state = 13, .external_lex_state = 2},
- [1169] = {.lex_state = 144, .external_lex_state = 2},
- [1170] = {.lex_state = 11, .external_lex_state = 6},
- [1171] = {.lex_state = 13, .external_lex_state = 2},
- [1172] = {.lex_state = 13, .external_lex_state = 2},
- [1173] = {.lex_state = 11, .external_lex_state = 6},
- [1174] = {.lex_state = 144, .external_lex_state = 2},
- [1175] = {.lex_state = 13, .external_lex_state = 2},
- [1176] = {.lex_state = 13, .external_lex_state = 2},
- [1177] = {.lex_state = 144, .external_lex_state = 2},
- [1178] = {.lex_state = 144, .external_lex_state = 2},
- [1179] = {.lex_state = 11, .external_lex_state = 6},
- [1180] = {.lex_state = 144, .external_lex_state = 2},
- [1181] = {.lex_state = 11, .external_lex_state = 6},
- [1182] = {.lex_state = 11, .external_lex_state = 6},
- [1183] = {.lex_state = 11, .external_lex_state = 6},
- [1184] = {.lex_state = 144, .external_lex_state = 2},
- [1185] = {.lex_state = 144, .external_lex_state = 2},
- [1186] = {.lex_state = 144, .external_lex_state = 5},
- [1187] = {.lex_state = 13, .external_lex_state = 2},
- [1188] = {.lex_state = 11, .external_lex_state = 6},
- [1189] = {.lex_state = 144, .external_lex_state = 2},
- [1190] = {.lex_state = 11, .external_lex_state = 6},
- [1191] = {.lex_state = 144, .external_lex_state = 2},
- [1192] = {.lex_state = 13, .external_lex_state = 2},
- [1193] = {.lex_state = 13, .external_lex_state = 2},
- [1194] = {.lex_state = 11, .external_lex_state = 6},
- [1195] = {.lex_state = 13, .external_lex_state = 2},
- [1196] = {.lex_state = 144, .external_lex_state = 2},
- [1197] = {.lex_state = 13, .external_lex_state = 2},
- [1198] = {.lex_state = 13, .external_lex_state = 2},
- [1199] = {.lex_state = 144, .external_lex_state = 2},
- [1200] = {.lex_state = 13, .external_lex_state = 2},
- [1201] = {.lex_state = 13, .external_lex_state = 2},
- [1202] = {.lex_state = 144, .external_lex_state = 5},
- [1203] = {.lex_state = 13, .external_lex_state = 2},
- [1204] = {.lex_state = 13, .external_lex_state = 2},
- [1205] = {.lex_state = 13, .external_lex_state = 2},
- [1206] = {.lex_state = 13, .external_lex_state = 2},
- [1207] = {.lex_state = 13, .external_lex_state = 2},
- [1208] = {.lex_state = 144, .external_lex_state = 2},
- [1209] = {.lex_state = 11, .external_lex_state = 6},
- [1210] = {.lex_state = 144, .external_lex_state = 2},
- [1211] = {.lex_state = 11, .external_lex_state = 6},
- [1212] = {.lex_state = 11, .external_lex_state = 6},
- [1213] = {.lex_state = 144, .external_lex_state = 2},
- [1214] = {.lex_state = 144, .external_lex_state = 2},
- [1215] = {.lex_state = 13, .external_lex_state = 2},
- [1216] = {.lex_state = 11, .external_lex_state = 6},
- [1217] = {.lex_state = 144, .external_lex_state = 2},
- [1218] = {.lex_state = 144, .external_lex_state = 2},
- [1219] = {.lex_state = 144, .external_lex_state = 5},
- [1220] = {.lex_state = 144, .external_lex_state = 5},
- [1221] = {.lex_state = 144, .external_lex_state = 5},
- [1222] = {.lex_state = 144, .external_lex_state = 2},
- [1223] = {.lex_state = 144, .external_lex_state = 2},
- [1224] = {.lex_state = 144, .external_lex_state = 2},
- [1225] = {.lex_state = 144, .external_lex_state = 2},
- [1226] = {.lex_state = 144, .external_lex_state = 2},
- [1227] = {.lex_state = 144, .external_lex_state = 2},
- [1228] = {.lex_state = 15, .external_lex_state = 8},
- [1229] = {.lex_state = 23, .external_lex_state = 8},
- [1230] = {.lex_state = 144, .external_lex_state = 2},
- [1231] = {.lex_state = 12, .external_lex_state = 2},
- [1232] = {.lex_state = 21, .external_lex_state = 2},
- [1233] = {.lex_state = 23, .external_lex_state = 8},
- [1234] = {.lex_state = 144, .external_lex_state = 2},
- [1235] = {.lex_state = 144, .external_lex_state = 2},
- [1236] = {.lex_state = 144, .external_lex_state = 2},
- [1237] = {.lex_state = 19, .external_lex_state = 7},
- [1238] = {.lex_state = 144, .external_lex_state = 2},
- [1239] = {.lex_state = 15, .external_lex_state = 8},
- [1240] = {.lex_state = 144, .external_lex_state = 5},
- [1241] = {.lex_state = 15, .external_lex_state = 8},
- [1242] = {.lex_state = 23, .external_lex_state = 8},
- [1243] = {.lex_state = 144, .external_lex_state = 2},
- [1244] = {.lex_state = 144, .external_lex_state = 2},
- [1245] = {.lex_state = 144, .external_lex_state = 2},
- [1246] = {.lex_state = 15, .external_lex_state = 8},
- [1247] = {.lex_state = 23, .external_lex_state = 8},
- [1248] = {.lex_state = 144, .external_lex_state = 2},
- [1249] = {.lex_state = 15, .external_lex_state = 8},
- [1250] = {.lex_state = 23, .external_lex_state = 8},
- [1251] = {.lex_state = 144, .external_lex_state = 5},
- [1252] = {.lex_state = 15, .external_lex_state = 8},
- [1253] = {.lex_state = 23, .external_lex_state = 8},
- [1254] = {.lex_state = 144, .external_lex_state = 2},
- [1255] = {.lex_state = 15, .external_lex_state = 8},
- [1256] = {.lex_state = 23, .external_lex_state = 8},
- [1257] = {.lex_state = 144, .external_lex_state = 2},
- [1258] = {.lex_state = 144, .external_lex_state = 2},
- [1259] = {.lex_state = 144, .external_lex_state = 2},
- [1260] = {.lex_state = 144, .external_lex_state = 2},
- [1261] = {.lex_state = 144, .external_lex_state = 2},
- [1262] = {.lex_state = 144, .external_lex_state = 2},
- [1263] = {.lex_state = 144, .external_lex_state = 2},
- [1264] = {.lex_state = 144, .external_lex_state = 2},
- [1265] = {.lex_state = 144, .external_lex_state = 2},
- [1266] = {.lex_state = 144, .external_lex_state = 2},
- [1267] = {.lex_state = 143, .external_lex_state = 2},
- [1268] = {.lex_state = 12, .external_lex_state = 2},
- [1269] = {.lex_state = 21, .external_lex_state = 2},
- [1270] = {.lex_state = 144, .external_lex_state = 2},
- [1271] = {.lex_state = 144, .external_lex_state = 5},
- [1272] = {.lex_state = 144, .external_lex_state = 2},
- [1273] = {.lex_state = 144, .external_lex_state = 5},
- [1274] = {.lex_state = 144, .external_lex_state = 2},
- [1275] = {.lex_state = 144, .external_lex_state = 2},
- [1276] = {.lex_state = 15, .external_lex_state = 8},
- [1277] = {.lex_state = 23, .external_lex_state = 8},
- [1278] = {.lex_state = 144, .external_lex_state = 2},
- [1279] = {.lex_state = 143, .external_lex_state = 2},
- [1280] = {.lex_state = 144, .external_lex_state = 5},
- [1281] = {.lex_state = 144, .external_lex_state = 5},
- [1282] = {.lex_state = 144, .external_lex_state = 5},
- [1283] = {.lex_state = 144, .external_lex_state = 5},
- [1284] = {.lex_state = 144, .external_lex_state = 5},
- [1285] = {.lex_state = 144, .external_lex_state = 2},
- [1286] = {.lex_state = 12, .external_lex_state = 2},
- [1287] = {.lex_state = 15, .external_lex_state = 8},
- [1288] = {.lex_state = 23, .external_lex_state = 8},
- [1289] = {.lex_state = 144, .external_lex_state = 2},
- [1290] = {.lex_state = 21, .external_lex_state = 2},
- [1291] = {.lex_state = 144, .external_lex_state = 2},
- [1292] = {.lex_state = 144, .external_lex_state = 2},
- [1293] = {.lex_state = 144, .external_lex_state = 2},
- [1294] = {.lex_state = 144, .external_lex_state = 2},
- [1295] = {.lex_state = 144, .external_lex_state = 2},
- [1296] = {.lex_state = 6, .external_lex_state = 2},
- [1297] = {.lex_state = 144, .external_lex_state = 2},
- [1298] = {.lex_state = 144, .external_lex_state = 5},
- [1299] = {.lex_state = 144, .external_lex_state = 2},
- [1300] = {.lex_state = 144, .external_lex_state = 2},
- [1301] = {.lex_state = 144, .external_lex_state = 2},
- [1302] = {.lex_state = 144, .external_lex_state = 2},
- [1303] = {.lex_state = 2, .external_lex_state = 2},
- [1304] = {.lex_state = 144, .external_lex_state = 2},
- [1305] = {.lex_state = 144, .external_lex_state = 2},
- [1306] = {.lex_state = 6, .external_lex_state = 2},
- [1307] = {.lex_state = 144, .external_lex_state = 5},
- [1308] = {.lex_state = 144, .external_lex_state = 2},
- [1309] = {.lex_state = 144, .external_lex_state = 2},
- [1310] = {.lex_state = 144, .external_lex_state = 2},
- [1311] = {.lex_state = 144, .external_lex_state = 2},
- [1312] = {.lex_state = 144, .external_lex_state = 2},
- [1313] = {.lex_state = 144, .external_lex_state = 2},
- [1314] = {.lex_state = 144, .external_lex_state = 2},
- [1315] = {.lex_state = 144, .external_lex_state = 2},
- [1316] = {.lex_state = 144, .external_lex_state = 2},
- [1317] = {.lex_state = 144, .external_lex_state = 2},
- [1318] = {.lex_state = 144, .external_lex_state = 2},
- [1319] = {.lex_state = 144, .external_lex_state = 2},
- [1320] = {.lex_state = 144, .external_lex_state = 2},
- [1321] = {.lex_state = 144, .external_lex_state = 5},
- [1322] = {.lex_state = 144, .external_lex_state = 2},
- [1323] = {.lex_state = 144, .external_lex_state = 2},
- [1324] = {.lex_state = 144, .external_lex_state = 2},
- [1325] = {.lex_state = 144, .external_lex_state = 2},
- [1326] = {.lex_state = 144, .external_lex_state = 2},
- [1327] = {.lex_state = 144, .external_lex_state = 2},
- [1328] = {.lex_state = 144, .external_lex_state = 2},
- [1329] = {.lex_state = 144, .external_lex_state = 2},
- [1330] = {.lex_state = 144, .external_lex_state = 5},
- [1331] = {.lex_state = 144, .external_lex_state = 2},
- [1332] = {.lex_state = 144, .external_lex_state = 2},
- [1333] = {.lex_state = 144, .external_lex_state = 2},
- [1334] = {.lex_state = 144, .external_lex_state = 2},
- [1335] = {.lex_state = 144, .external_lex_state = 2},
- [1336] = {.lex_state = 144, .external_lex_state = 2},
- [1337] = {.lex_state = 144, .external_lex_state = 2},
- [1338] = {.lex_state = 143, .external_lex_state = 2},
- [1339] = {.lex_state = 144, .external_lex_state = 5},
- [1340] = {.lex_state = 144, .external_lex_state = 2},
- [1341] = {.lex_state = 144, .external_lex_state = 2},
- [1342] = {.lex_state = 144, .external_lex_state = 2},
- [1343] = {.lex_state = 144, .external_lex_state = 2},
- [1344] = {.lex_state = 144, .external_lex_state = 5},
- [1345] = {.lex_state = 144, .external_lex_state = 2},
- [1346] = {.lex_state = 144, .external_lex_state = 2},
- [1347] = {.lex_state = 144, .external_lex_state = 2},
- [1348] = {.lex_state = 2, .external_lex_state = 2},
- [1349] = {.lex_state = 144, .external_lex_state = 5},
- [1350] = {.lex_state = 144, .external_lex_state = 2},
- [1351] = {.lex_state = 144, .external_lex_state = 5},
- [1352] = {.lex_state = 144, .external_lex_state = 2},
- [1353] = {.lex_state = 144, .external_lex_state = 5},
- [1354] = {.lex_state = 144, .external_lex_state = 2},
- [1355] = {.lex_state = 144, .external_lex_state = 2},
- [1356] = {.lex_state = 144, .external_lex_state = 2},
- [1357] = {.lex_state = 2, .external_lex_state = 2},
- [1358] = {.lex_state = 144, .external_lex_state = 2},
- [1359] = {.lex_state = 144, .external_lex_state = 2},
- [1360] = {.lex_state = 144, .external_lex_state = 2},
- [1361] = {.lex_state = 144, .external_lex_state = 2},
- [1362] = {.lex_state = 144, .external_lex_state = 2},
- [1363] = {.lex_state = 144, .external_lex_state = 2},
- [1364] = {.lex_state = 2, .external_lex_state = 2},
- [1365] = {.lex_state = 144, .external_lex_state = 2},
- [1366] = {.lex_state = 144, .external_lex_state = 2},
- [1367] = {.lex_state = 144, .external_lex_state = 2},
- [1368] = {.lex_state = 144, .external_lex_state = 2},
- [1369] = {.lex_state = 144, .external_lex_state = 2},
- [1370] = {.lex_state = 144, .external_lex_state = 2},
- [1371] = {.lex_state = 144, .external_lex_state = 2},
- [1372] = {.lex_state = 144, .external_lex_state = 2},
- [1373] = {.lex_state = 144, .external_lex_state = 2},
- [1374] = {.lex_state = 2, .external_lex_state = 2},
- [1375] = {.lex_state = 144, .external_lex_state = 2},
- [1376] = {.lex_state = 144, .external_lex_state = 5},
- [1377] = {.lex_state = 143, .external_lex_state = 2},
- [1378] = {.lex_state = 2, .external_lex_state = 2},
- [1379] = {.lex_state = 144, .external_lex_state = 2},
- [1380] = {.lex_state = 144, .external_lex_state = 2},
- [1381] = {.lex_state = 144, .external_lex_state = 2},
- [1382] = {.lex_state = 144, .external_lex_state = 2},
- [1383] = {.lex_state = 144, .external_lex_state = 2},
- [1384] = {.lex_state = 144, .external_lex_state = 2},
- [1385] = {.lex_state = 144, .external_lex_state = 2},
- [1386] = {.lex_state = 2, .external_lex_state = 2},
- [1387] = {.lex_state = 144, .external_lex_state = 2},
- [1388] = {.lex_state = 144, .external_lex_state = 2},
- [1389] = {.lex_state = 144, .external_lex_state = 2},
- [1390] = {.lex_state = 144, .external_lex_state = 2},
- [1391] = {.lex_state = 6, .external_lex_state = 2},
- [1392] = {.lex_state = 144, .external_lex_state = 2},
- [1393] = {.lex_state = 144, .external_lex_state = 2},
- [1394] = {.lex_state = 6, .external_lex_state = 2},
- [1395] = {.lex_state = 144, .external_lex_state = 2},
- [1396] = {.lex_state = 144, .external_lex_state = 2},
- [1397] = {.lex_state = 144, .external_lex_state = 2},
- [1398] = {.lex_state = 144, .external_lex_state = 2},
- [1399] = {.lex_state = 144, .external_lex_state = 2},
- [1400] = {.lex_state = 144, .external_lex_state = 2},
- [1401] = {.lex_state = 144, .external_lex_state = 2},
- [1402] = {.lex_state = 144, .external_lex_state = 2},
- [1403] = {.lex_state = 144, .external_lex_state = 2},
- [1404] = {.lex_state = 144, .external_lex_state = 2},
- [1405] = {.lex_state = 144, .external_lex_state = 2},
- [1406] = {.lex_state = 144, .external_lex_state = 2},
- [1407] = {.lex_state = 144, .external_lex_state = 2},
- [1408] = {.lex_state = 144, .external_lex_state = 2},
- [1409] = {.lex_state = 144, .external_lex_state = 2},
- [1410] = {.lex_state = 144, .external_lex_state = 2},
- [1411] = {.lex_state = 144, .external_lex_state = 2},
- [1412] = {.lex_state = 144, .external_lex_state = 5},
- [1413] = {.lex_state = 144, .external_lex_state = 2},
- [1414] = {.lex_state = 144, .external_lex_state = 2},
- [1415] = {.lex_state = 144, .external_lex_state = 2},
- [1416] = {.lex_state = 144, .external_lex_state = 2},
- [1417] = {.lex_state = 144, .external_lex_state = 2},
- [1418] = {.lex_state = 6, .external_lex_state = 2},
- [1419] = {.lex_state = 144, .external_lex_state = 2},
- [1420] = {.lex_state = 144, .external_lex_state = 2},
- [1421] = {.lex_state = 144, .external_lex_state = 2},
- [1422] = {.lex_state = 144, .external_lex_state = 2},
- [1423] = {.lex_state = 144, .external_lex_state = 2},
- [1424] = {.lex_state = 144, .external_lex_state = 2},
- [1425] = {.lex_state = 144, .external_lex_state = 2},
- [1426] = {.lex_state = 144, .external_lex_state = 2},
- [1427] = {.lex_state = 144, .external_lex_state = 2},
- [1428] = {.lex_state = 144, .external_lex_state = 2},
- [1429] = {.lex_state = 144, .external_lex_state = 2},
- [1430] = {.lex_state = 144, .external_lex_state = 5},
- [1431] = {.lex_state = 144, .external_lex_state = 2},
- [1432] = {.lex_state = 144, .external_lex_state = 2},
- [1433] = {.lex_state = 144, .external_lex_state = 2},
- [1434] = {.lex_state = 144, .external_lex_state = 2},
- [1435] = {.lex_state = 144, .external_lex_state = 2},
- [1436] = {.lex_state = 144, .external_lex_state = 2},
- [1437] = {.lex_state = 144, .external_lex_state = 2},
- [1438] = {.lex_state = 144, .external_lex_state = 2},
- [1439] = {.lex_state = 144, .external_lex_state = 2},
- [1440] = {.lex_state = 144, .external_lex_state = 2},
- [1441] = {.lex_state = 144, .external_lex_state = 2},
- [1442] = {.lex_state = 144, .external_lex_state = 5},
- [1443] = {.lex_state = 144, .external_lex_state = 5},
- [1444] = {.lex_state = 144, .external_lex_state = 2},
- [1445] = {.lex_state = 144, .external_lex_state = 2},
- [1446] = {.lex_state = 144, .external_lex_state = 2},
- [1447] = {.lex_state = 6, .external_lex_state = 2},
- [1448] = {.lex_state = 144, .external_lex_state = 2},
- [1449] = {.lex_state = 144, .external_lex_state = 2},
- [1450] = {.lex_state = 144, .external_lex_state = 2},
- [1451] = {.lex_state = 144, .external_lex_state = 2},
- [1452] = {.lex_state = 144, .external_lex_state = 2},
- [1453] = {.lex_state = 144, .external_lex_state = 2},
- [1454] = {.lex_state = 144, .external_lex_state = 2},
- [1455] = {.lex_state = 144, .external_lex_state = 2},
- [1456] = {.lex_state = 144, .external_lex_state = 2},
- [1457] = {.lex_state = 144, .external_lex_state = 2},
- [1458] = {.lex_state = 144, .external_lex_state = 2},
- [1459] = {.lex_state = 144, .external_lex_state = 2},
- [1460] = {.lex_state = 144, .external_lex_state = 2},
- [1461] = {.lex_state = 144, .external_lex_state = 2},
- [1462] = {.lex_state = 144, .external_lex_state = 2},
- [1463] = {.lex_state = 144, .external_lex_state = 2},
- [1464] = {.lex_state = 144, .external_lex_state = 2},
- [1465] = {.lex_state = 144, .external_lex_state = 2},
- [1466] = {.lex_state = 144, .external_lex_state = 2},
- [1467] = {.lex_state = 144, .external_lex_state = 2},
- [1468] = {.lex_state = 144, .external_lex_state = 2},
- [1469] = {.lex_state = 144, .external_lex_state = 2},
- [1470] = {.lex_state = 144, .external_lex_state = 2},
- [1471] = {.lex_state = 144, .external_lex_state = 2},
- [1472] = {.lex_state = 144, .external_lex_state = 2},
- [1473] = {.lex_state = 144, .external_lex_state = 2},
- [1474] = {.lex_state = 144, .external_lex_state = 2},
- [1475] = {.lex_state = 144, .external_lex_state = 2},
- [1476] = {.lex_state = 144, .external_lex_state = 2},
- [1477] = {.lex_state = 144, .external_lex_state = 2},
- [1478] = {.lex_state = 144, .external_lex_state = 5},
- [1479] = {.lex_state = 144, .external_lex_state = 2},
- [1480] = {.lex_state = 144, .external_lex_state = 2},
- [1481] = {.lex_state = 144, .external_lex_state = 2},
- [1482] = {.lex_state = 144, .external_lex_state = 2},
- [1483] = {.lex_state = 144, .external_lex_state = 2},
- [1484] = {.lex_state = 144, .external_lex_state = 2},
- [1485] = {.lex_state = 144, .external_lex_state = 5},
- [1486] = {.lex_state = 144, .external_lex_state = 2},
- [1487] = {.lex_state = 144, .external_lex_state = 2},
- [1488] = {.lex_state = 144, .external_lex_state = 2},
- [1489] = {.lex_state = 144, .external_lex_state = 2},
- [1490] = {.lex_state = 144, .external_lex_state = 2},
- [1491] = {.lex_state = 144, .external_lex_state = 5},
- [1492] = {.lex_state = 144, .external_lex_state = 2},
- [1493] = {.lex_state = 144, .external_lex_state = 5},
- [1494] = {.lex_state = 144, .external_lex_state = 2},
- [1495] = {.lex_state = 144, .external_lex_state = 2},
- [1496] = {.lex_state = 144, .external_lex_state = 2},
- [1497] = {.lex_state = 144, .external_lex_state = 2},
- [1498] = {.lex_state = 144, .external_lex_state = 2},
- [1499] = {.lex_state = 144, .external_lex_state = 2},
- [1500] = {.lex_state = 144, .external_lex_state = 2},
- [1501] = {.lex_state = 144, .external_lex_state = 2},
- [1502] = {.lex_state = 144, .external_lex_state = 2},
- [1503] = {.lex_state = 144, .external_lex_state = 2},
- [1504] = {.lex_state = 144, .external_lex_state = 2},
- [1505] = {.lex_state = 144, .external_lex_state = 2},
- [1506] = {.lex_state = 144, .external_lex_state = 2},
- [1507] = {.lex_state = 144, .external_lex_state = 2},
- [1508] = {.lex_state = 144, .external_lex_state = 2},
- [1509] = {.lex_state = 144, .external_lex_state = 2},
- [1510] = {.lex_state = 144, .external_lex_state = 2},
- [1511] = {.lex_state = 144, .external_lex_state = 2},
- [1512] = {.lex_state = 144, .external_lex_state = 2},
- [1513] = {.lex_state = 144, .external_lex_state = 2},
- [1514] = {.lex_state = 144, .external_lex_state = 5},
- [1515] = {.lex_state = 144, .external_lex_state = 5},
- [1516] = {.lex_state = 144, .external_lex_state = 2},
- [1517] = {.lex_state = 144, .external_lex_state = 2},
- [1518] = {.lex_state = 144, .external_lex_state = 2},
- [1519] = {.lex_state = 144, .external_lex_state = 2},
- [1520] = {.lex_state = 144, .external_lex_state = 2},
- [1521] = {.lex_state = 144, .external_lex_state = 2},
- [1522] = {.lex_state = 144, .external_lex_state = 2},
- [1523] = {.lex_state = 6, .external_lex_state = 2},
- [1524] = {.lex_state = 144, .external_lex_state = 2},
- [1525] = {.lex_state = 144, .external_lex_state = 2},
- [1526] = {.lex_state = 144, .external_lex_state = 5},
- [1527] = {.lex_state = 144, .external_lex_state = 2},
- [1528] = {.lex_state = 144, .external_lex_state = 2},
- [1529] = {.lex_state = 144, .external_lex_state = 2},
- [1530] = {.lex_state = 144, .external_lex_state = 2},
- [1531] = {.lex_state = 144, .external_lex_state = 2},
- [1532] = {.lex_state = 144, .external_lex_state = 2},
- [1533] = {.lex_state = 144, .external_lex_state = 2},
- [1534] = {.lex_state = 144, .external_lex_state = 2},
- [1535] = {.lex_state = 144, .external_lex_state = 2},
- [1536] = {.lex_state = 144, .external_lex_state = 2},
- [1537] = {.lex_state = 144, .external_lex_state = 2},
- [1538] = {.lex_state = 144, .external_lex_state = 2},
- [1539] = {.lex_state = 144, .external_lex_state = 2},
- [1540] = {.lex_state = 144, .external_lex_state = 2},
- [1541] = {.lex_state = 144, .external_lex_state = 2},
- [1542] = {.lex_state = 144, .external_lex_state = 2},
- [1543] = {.lex_state = 144, .external_lex_state = 5},
- [1544] = {.lex_state = 144, .external_lex_state = 2},
- [1545] = {.lex_state = 144, .external_lex_state = 5},
- [1546] = {.lex_state = 144, .external_lex_state = 2},
- [1547] = {.lex_state = 144, .external_lex_state = 2},
- [1548] = {.lex_state = 144, .external_lex_state = 2},
- [1549] = {.lex_state = 144, .external_lex_state = 2},
- [1550] = {.lex_state = 144, .external_lex_state = 2},
- [1551] = {.lex_state = 144, .external_lex_state = 2},
- [1552] = {.lex_state = 144, .external_lex_state = 2},
- [1553] = {.lex_state = 144, .external_lex_state = 2},
- [1554] = {.lex_state = 144, .external_lex_state = 5},
- [1555] = {.lex_state = 144, .external_lex_state = 2},
- [1556] = {.lex_state = 144, .external_lex_state = 2},
- [1557] = {.lex_state = 144, .external_lex_state = 2},
- [1558] = {.lex_state = 144, .external_lex_state = 5},
- [1559] = {.lex_state = 144, .external_lex_state = 2},
- [1560] = {.lex_state = 144, .external_lex_state = 2},
- [1561] = {.lex_state = 144, .external_lex_state = 2},
- [1562] = {.lex_state = 144, .external_lex_state = 2},
- [1563] = {.lex_state = 144, .external_lex_state = 2},
- [1564] = {.lex_state = 144, .external_lex_state = 2},
- [1565] = {.lex_state = 144, .external_lex_state = 2},
- [1566] = {.lex_state = 144, .external_lex_state = 2},
- [1567] = {.lex_state = 144, .external_lex_state = 2},
- [1568] = {.lex_state = 144, .external_lex_state = 2},
- [1569] = {.lex_state = 144, .external_lex_state = 2},
- [1570] = {.lex_state = 144, .external_lex_state = 2},
- [1571] = {.lex_state = 144, .external_lex_state = 2},
- [1572] = {.lex_state = 144, .external_lex_state = 2},
- [1573] = {.lex_state = 144, .external_lex_state = 2},
- [1574] = {.lex_state = 144, .external_lex_state = 5},
- [1575] = {.lex_state = 144, .external_lex_state = 2},
- [1576] = {.lex_state = 144, .external_lex_state = 2},
- [1577] = {.lex_state = 144, .external_lex_state = 2},
- [1578] = {.lex_state = 144, .external_lex_state = 2},
- [1579] = {.lex_state = 144, .external_lex_state = 2},
- [1580] = {.lex_state = 144, .external_lex_state = 2},
- [1581] = {.lex_state = 144, .external_lex_state = 5},
- [1582] = {.lex_state = 144, .external_lex_state = 5},
- [1583] = {.lex_state = 144, .external_lex_state = 2},
- [1584] = {.lex_state = 144, .external_lex_state = 2},
- [1585] = {.lex_state = 144, .external_lex_state = 2},
- [1586] = {.lex_state = 144, .external_lex_state = 2},
- [1587] = {.lex_state = 144, .external_lex_state = 2},
- [1588] = {.lex_state = 144, .external_lex_state = 2},
- [1589] = {.lex_state = 144, .external_lex_state = 2},
- [1590] = {.lex_state = 144, .external_lex_state = 2},
- [1591] = {.lex_state = 144, .external_lex_state = 2},
- [1592] = {.lex_state = 144, .external_lex_state = 2},
- [1593] = {.lex_state = 144, .external_lex_state = 2},
- [1594] = {.lex_state = 144, .external_lex_state = 2},
- [1595] = {.lex_state = 144, .external_lex_state = 2},
- [1596] = {.lex_state = 144, .external_lex_state = 2},
- [1597] = {.lex_state = 144, .external_lex_state = 2},
- [1598] = {.lex_state = 144, .external_lex_state = 2},
- [1599] = {.lex_state = 144, .external_lex_state = 2},
- [1600] = {.lex_state = 144, .external_lex_state = 2},
- [1601] = {.lex_state = 144, .external_lex_state = 5},
- [1602] = {.lex_state = 144, .external_lex_state = 2},
- [1603] = {.lex_state = 144, .external_lex_state = 5},
- [1604] = {.lex_state = 144, .external_lex_state = 2},
- [1605] = {.lex_state = 144, .external_lex_state = 5},
- [1606] = {.lex_state = 144, .external_lex_state = 2},
- [1607] = {.lex_state = 144, .external_lex_state = 2},
- [1608] = {.lex_state = 144, .external_lex_state = 2},
- [1609] = {.lex_state = 144, .external_lex_state = 5},
- [1610] = {.lex_state = 144, .external_lex_state = 2},
- [1611] = {.lex_state = 144, .external_lex_state = 2},
- [1612] = {.lex_state = 144, .external_lex_state = 2},
- [1613] = {.lex_state = 144, .external_lex_state = 2},
- [1614] = {.lex_state = 144, .external_lex_state = 2},
- [1615] = {.lex_state = 144, .external_lex_state = 2},
- [1616] = {.lex_state = 144, .external_lex_state = 2},
- [1617] = {.lex_state = 144, .external_lex_state = 2},
- [1618] = {.lex_state = 144, .external_lex_state = 2},
- [1619] = {.lex_state = 13, .external_lex_state = 2},
- [1620] = {.lex_state = 144, .external_lex_state = 2},
- [1621] = {.lex_state = 144, .external_lex_state = 2},
- [1622] = {.lex_state = 144, .external_lex_state = 2},
- [1623] = {.lex_state = 144, .external_lex_state = 2},
- [1624] = {.lex_state = 144, .external_lex_state = 2},
- [1625] = {.lex_state = 144, .external_lex_state = 2},
- [1626] = {.lex_state = 144, .external_lex_state = 2},
- [1627] = {.lex_state = 144, .external_lex_state = 2},
- [1628] = {.lex_state = 144, .external_lex_state = 2},
- [1629] = {.lex_state = 6, .external_lex_state = 2},
- [1630] = {.lex_state = 144, .external_lex_state = 2},
- [1631] = {.lex_state = 144, .external_lex_state = 2},
- [1632] = {.lex_state = 144, .external_lex_state = 2},
- [1633] = {.lex_state = 144, .external_lex_state = 2},
- [1634] = {.lex_state = 144, .external_lex_state = 2},
- [1635] = {.lex_state = 144, .external_lex_state = 2},
- [1636] = {.lex_state = 144, .external_lex_state = 2},
- [1637] = {.lex_state = 144, .external_lex_state = 2},
- [1638] = {.lex_state = 144, .external_lex_state = 2},
- [1639] = {.lex_state = 144, .external_lex_state = 2},
- [1640] = {.lex_state = 144, .external_lex_state = 2},
- [1641] = {.lex_state = 144, .external_lex_state = 2},
- [1642] = {.lex_state = 144, .external_lex_state = 2},
- [1643] = {.lex_state = 144, .external_lex_state = 2},
- [1644] = {.lex_state = 144, .external_lex_state = 2},
- [1645] = {.lex_state = 144, .external_lex_state = 2},
- [1646] = {.lex_state = 144, .external_lex_state = 2},
- [1647] = {.lex_state = 144, .external_lex_state = 2},
- [1648] = {.lex_state = 144, .external_lex_state = 2},
- [1649] = {.lex_state = 144, .external_lex_state = 2},
- [1650] = {.lex_state = 144, .external_lex_state = 2},
- [1651] = {.lex_state = 144, .external_lex_state = 2},
- [1652] = {.lex_state = 144, .external_lex_state = 2},
- [1653] = {.lex_state = 34, .external_lex_state = 2},
- [1654] = {.lex_state = 144, .external_lex_state = 2},
- [1655] = {.lex_state = 34, .external_lex_state = 2},
- [1656] = {.lex_state = 144, .external_lex_state = 2},
- [1657] = {.lex_state = 144, .external_lex_state = 2},
- [1658] = {.lex_state = 144, .external_lex_state = 2},
- [1659] = {.lex_state = 144, .external_lex_state = 2},
- [1660] = {.lex_state = 144, .external_lex_state = 2},
- [1661] = {.lex_state = 144, .external_lex_state = 2},
- [1662] = {.lex_state = 144, .external_lex_state = 2},
- [1663] = {.lex_state = 144, .external_lex_state = 2},
- [1664] = {.lex_state = 144, .external_lex_state = 2},
- [1665] = {.lex_state = 144, .external_lex_state = 2},
- [1666] = {.lex_state = 144, .external_lex_state = 2},
- [1667] = {.lex_state = 144, .external_lex_state = 2},
- [1668] = {.lex_state = 144, .external_lex_state = 2},
- [1669] = {.lex_state = 144, .external_lex_state = 2},
- [1670] = {.lex_state = 144, .external_lex_state = 2},
- [1671] = {.lex_state = 144, .external_lex_state = 2},
- [1672] = {.lex_state = 144, .external_lex_state = 2},
- [1673] = {.lex_state = 144, .external_lex_state = 2},
- [1674] = {.lex_state = 144, .external_lex_state = 2},
- [1675] = {.lex_state = 144, .external_lex_state = 2},
- [1676] = {.lex_state = 144, .external_lex_state = 2},
- [1677] = {.lex_state = 144, .external_lex_state = 2},
- [1678] = {.lex_state = 144, .external_lex_state = 2},
- [1679] = {.lex_state = 34, .external_lex_state = 2},
- [1680] = {.lex_state = 144, .external_lex_state = 2},
- [1681] = {.lex_state = 144, .external_lex_state = 2},
- [1682] = {.lex_state = 144, .external_lex_state = 2},
- [1683] = {.lex_state = 144, .external_lex_state = 2},
- [1684] = {.lex_state = 144, .external_lex_state = 2},
- [1685] = {.lex_state = 144, .external_lex_state = 2},
- [1686] = {.lex_state = 144, .external_lex_state = 2},
- [1687] = {.lex_state = 144, .external_lex_state = 2},
- [1688] = {.lex_state = 144, .external_lex_state = 2},
- [1689] = {.lex_state = 144, .external_lex_state = 2},
- [1690] = {.lex_state = 144, .external_lex_state = 2},
- [1691] = {.lex_state = 144, .external_lex_state = 2},
- [1692] = {.lex_state = 144, .external_lex_state = 2},
- [1693] = {.lex_state = 144, .external_lex_state = 2},
- [1694] = {.lex_state = 144, .external_lex_state = 2},
- [1695] = {.lex_state = 144, .external_lex_state = 2},
- [1696] = {.lex_state = 144, .external_lex_state = 2},
- [1697] = {.lex_state = 144, .external_lex_state = 2},
- [1698] = {.lex_state = 144, .external_lex_state = 2},
- [1699] = {.lex_state = 144, .external_lex_state = 2},
- [1700] = {.lex_state = 144, .external_lex_state = 2},
- [1701] = {.lex_state = 144, .external_lex_state = 2},
- [1702] = {.lex_state = 144, .external_lex_state = 2},
- [1703] = {.lex_state = 144, .external_lex_state = 2},
- [1704] = {.lex_state = 3, .external_lex_state = 9},
- [1705] = {.lex_state = 144, .external_lex_state = 2},
- [1706] = {.lex_state = 3, .external_lex_state = 9},
- [1707] = {.lex_state = 144, .external_lex_state = 2},
- [1708] = {.lex_state = 3, .external_lex_state = 9},
- [1709] = {.lex_state = 144, .external_lex_state = 2},
- [1710] = {.lex_state = 144, .external_lex_state = 2},
- [1711] = {.lex_state = 144, .external_lex_state = 2},
- [1712] = {.lex_state = 144, .external_lex_state = 2},
- [1713] = {.lex_state = 144, .external_lex_state = 2},
- [1714] = {.lex_state = 3, .external_lex_state = 9},
- [1715] = {.lex_state = 144, .external_lex_state = 2},
- [1716] = {.lex_state = 144, .external_lex_state = 2},
- [1717] = {.lex_state = 144, .external_lex_state = 2},
- [1718] = {.lex_state = 144, .external_lex_state = 2},
- [1719] = {.lex_state = 144, .external_lex_state = 2},
- [1720] = {.lex_state = 144, .external_lex_state = 2},
- [1721] = {.lex_state = 144, .external_lex_state = 2},
- [1722] = {.lex_state = 144, .external_lex_state = 2},
- [1723] = {.lex_state = 144, .external_lex_state = 2},
- [1724] = {.lex_state = 144, .external_lex_state = 2},
- [1725] = {.lex_state = 144, .external_lex_state = 2},
- [1726] = {.lex_state = 144, .external_lex_state = 2},
- [1727] = {.lex_state = 144, .external_lex_state = 2},
- [1728] = {.lex_state = 144, .external_lex_state = 2},
- [1729] = {.lex_state = 144, .external_lex_state = 2},
- [1730] = {.lex_state = 144, .external_lex_state = 2},
- [1731] = {.lex_state = 144, .external_lex_state = 2},
- [1732] = {.lex_state = 34, .external_lex_state = 2},
- [1733] = {.lex_state = 144, .external_lex_state = 2},
- [1734] = {.lex_state = 144, .external_lex_state = 2},
- [1735] = {.lex_state = 144, .external_lex_state = 2},
- [1736] = {.lex_state = 144, .external_lex_state = 2},
- [1737] = {.lex_state = 144, .external_lex_state = 2},
- [1738] = {.lex_state = 144, .external_lex_state = 2},
- [1739] = {.lex_state = 144, .external_lex_state = 2},
- [1740] = {.lex_state = 144, .external_lex_state = 2},
- [1741] = {.lex_state = 144, .external_lex_state = 2},
- [1742] = {.lex_state = 144, .external_lex_state = 2},
- [1743] = {.lex_state = 144, .external_lex_state = 2},
- [1744] = {.lex_state = 144, .external_lex_state = 2},
- [1745] = {.lex_state = 144, .external_lex_state = 2},
+ [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 = 5},
+ [110] = {.lex_state = 125, .external_lex_state = 2},
+ [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 = 125, .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 = 5, .external_lex_state = 2},
+ [132] = {.lex_state = 6, .external_lex_state = 4},
+ [133] = {.lex_state = 125, .external_lex_state = 2},
+ [134] = {.lex_state = 6, .external_lex_state = 4},
+ [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 = 6, .external_lex_state = 4},
+ [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 = 5, .external_lex_state = 2},
+ [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 = 125, .external_lex_state = 2},
+ [151] = {.lex_state = 125, .external_lex_state = 2},
+ [152] = {.lex_state = 125, .external_lex_state = 2},
+ [153] = {.lex_state = 125, .external_lex_state = 2},
+ [154] = {.lex_state = 125, .external_lex_state = 2},
+ [155] = {.lex_state = 125, .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 = 5, .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 = 5, .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 = 125, .external_lex_state = 2},
+ [278] = {.lex_state = 125, .external_lex_state = 2},
+ [279] = {.lex_state = 125, .external_lex_state = 2},
+ [280] = {.lex_state = 125, .external_lex_state = 2},
+ [281] = {.lex_state = 125, .external_lex_state = 2},
+ [282] = {.lex_state = 125, .external_lex_state = 2},
+ [283] = {.lex_state = 125, .external_lex_state = 2},
+ [284] = {.lex_state = 125, .external_lex_state = 2},
+ [285] = {.lex_state = 125, .external_lex_state = 2},
+ [286] = {.lex_state = 125, .external_lex_state = 2},
+ [287] = {.lex_state = 125, .external_lex_state = 2},
+ [288] = {.lex_state = 125, .external_lex_state = 2},
+ [289] = {.lex_state = 125, .external_lex_state = 2},
+ [290] = {.lex_state = 125, .external_lex_state = 2},
+ [291] = {.lex_state = 125, .external_lex_state = 2},
+ [292] = {.lex_state = 125, .external_lex_state = 2},
+ [293] = {.lex_state = 125, .external_lex_state = 2},
+ [294] = {.lex_state = 125, .external_lex_state = 2},
+ [295] = {.lex_state = 125, .external_lex_state = 2},
+ [296] = {.lex_state = 125, .external_lex_state = 2},
+ [297] = {.lex_state = 125, .external_lex_state = 2},
+ [298] = {.lex_state = 6, .external_lex_state = 4},
+ [299] = {.lex_state = 6, .external_lex_state = 4},
+ [300] = {.lex_state = 6, .external_lex_state = 4},
+ [301] = {.lex_state = 6, .external_lex_state = 4},
+ [302] = {.lex_state = 6, .external_lex_state = 4},
+ [303] = {.lex_state = 6, .external_lex_state = 4},
+ [304] = {.lex_state = 6, .external_lex_state = 4},
+ [305] = {.lex_state = 6, .external_lex_state = 4},
+ [306] = {.lex_state = 6, .external_lex_state = 4},
+ [307] = {.lex_state = 6, .external_lex_state = 4},
+ [308] = {.lex_state = 6, .external_lex_state = 4},
+ [309] = {.lex_state = 6, .external_lex_state = 3},
+ [310] = {.lex_state = 6, .external_lex_state = 3},
+ [311] = {.lex_state = 125, .external_lex_state = 5},
+ [312] = {.lex_state = 125, .external_lex_state = 5},
+ [313] = {.lex_state = 6, .external_lex_state = 4},
+ [314] = {.lex_state = 6, .external_lex_state = 4},
+ [315] = {.lex_state = 6, .external_lex_state = 4},
+ [316] = {.lex_state = 6, .external_lex_state = 3},
+ [317] = {.lex_state = 6, .external_lex_state = 4},
+ [318] = {.lex_state = 6, .external_lex_state = 4},
+ [319] = {.lex_state = 6, .external_lex_state = 3},
+ [320] = {.lex_state = 6, .external_lex_state = 4},
+ [321] = {.lex_state = 6, .external_lex_state = 4},
+ [322] = {.lex_state = 6, .external_lex_state = 4},
+ [323] = {.lex_state = 6, .external_lex_state = 4},
+ [324] = {.lex_state = 125, .external_lex_state = 2},
+ [325] = {.lex_state = 6, .external_lex_state = 3},
+ [326] = {.lex_state = 125, .external_lex_state = 2},
+ [327] = {.lex_state = 125, .external_lex_state = 2},
+ [328] = {.lex_state = 6, .external_lex_state = 3},
+ [329] = {.lex_state = 6, .external_lex_state = 3},
+ [330] = {.lex_state = 6, .external_lex_state = 3},
+ [331] = {.lex_state = 6, .external_lex_state = 3},
+ [332] = {.lex_state = 6, .external_lex_state = 4},
+ [333] = {.lex_state = 125, .external_lex_state = 2},
+ [334] = {.lex_state = 6, .external_lex_state = 4},
+ [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 = 5},
+ [341] = {.lex_state = 125, .external_lex_state = 5},
+ [342] = {.lex_state = 125, .external_lex_state = 2},
+ [343] = {.lex_state = 6, .external_lex_state = 4},
+ [344] = {.lex_state = 6, .external_lex_state = 3},
+ [345] = {.lex_state = 125, .external_lex_state = 2},
+ [346] = {.lex_state = 125, .external_lex_state = 2},
+ [347] = {.lex_state = 125, .external_lex_state = 5},
+ [348] = {.lex_state = 125, .external_lex_state = 5},
+ [349] = {.lex_state = 125, .external_lex_state = 5},
+ [350] = {.lex_state = 125, .external_lex_state = 5},
+ [351] = {.lex_state = 125, .external_lex_state = 5},
+ [352] = {.lex_state = 6, .external_lex_state = 4},
+ [353] = {.lex_state = 125, .external_lex_state = 5},
+ [354] = {.lex_state = 125, .external_lex_state = 5},
+ [355] = {.lex_state = 125, .external_lex_state = 5},
+ [356] = {.lex_state = 6, .external_lex_state = 3},
+ [357] = {.lex_state = 6, .external_lex_state = 3},
+ [358] = {.lex_state = 125, .external_lex_state = 5},
+ [359] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 125, .external_lex_state = 2},
+ [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 = 125, .external_lex_state = 2},
+ [399] = {.lex_state = 125, .external_lex_state = 2},
+ [400] = {.lex_state = 125, .external_lex_state = 2},
+ [401] = {.lex_state = 125, .external_lex_state = 2},
+ [402] = {.lex_state = 125, .external_lex_state = 2},
+ [403] = {.lex_state = 125, .external_lex_state = 2},
+ [404] = {.lex_state = 125, .external_lex_state = 2},
+ [405] = {.lex_state = 125, .external_lex_state = 2},
+ [406] = {.lex_state = 125, .external_lex_state = 2},
+ [407] = {.lex_state = 125, .external_lex_state = 2},
+ [408] = {.lex_state = 125, .external_lex_state = 2},
+ [409] = {.lex_state = 125, .external_lex_state = 2},
+ [410] = {.lex_state = 6, .external_lex_state = 3},
+ [411] = {.lex_state = 125, .external_lex_state = 2},
+ [412] = {.lex_state = 125, .external_lex_state = 2},
+ [413] = {.lex_state = 125, .external_lex_state = 2},
+ [414] = {.lex_state = 125, .external_lex_state = 2},
+ [415] = {.lex_state = 125, .external_lex_state = 2},
+ [416] = {.lex_state = 125, .external_lex_state = 2},
+ [417] = {.lex_state = 125, .external_lex_state = 2},
+ [418] = {.lex_state = 125, .external_lex_state = 2},
+ [419] = {.lex_state = 125, .external_lex_state = 2},
+ [420] = {.lex_state = 125, .external_lex_state = 2},
+ [421] = {.lex_state = 125, .external_lex_state = 2},
+ [422] = {.lex_state = 125, .external_lex_state = 2},
+ [423] = {.lex_state = 125, .external_lex_state = 2},
+ [424] = {.lex_state = 125, .external_lex_state = 2},
+ [425] = {.lex_state = 125, .external_lex_state = 2},
+ [426] = {.lex_state = 6, .external_lex_state = 4},
+ [427] = {.lex_state = 6, .external_lex_state = 3},
+ [428] = {.lex_state = 6, .external_lex_state = 3},
+ [429] = {.lex_state = 6, .external_lex_state = 3},
+ [430] = {.lex_state = 6, .external_lex_state = 3},
+ [431] = {.lex_state = 6, .external_lex_state = 3},
+ [432] = {.lex_state = 6, .external_lex_state = 4},
+ [433] = {.lex_state = 6, .external_lex_state = 3},
+ [434] = {.lex_state = 6, .external_lex_state = 4},
+ [435] = {.lex_state = 6, .external_lex_state = 3},
+ [436] = {.lex_state = 6, .external_lex_state = 3},
+ [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 = 125, .external_lex_state = 2},
+ [445] = {.lex_state = 6, .external_lex_state = 4},
+ [446] = {.lex_state = 6, .external_lex_state = 4},
+ [447] = {.lex_state = 6, .external_lex_state = 4},
+ [448] = {.lex_state = 125, .external_lex_state = 2},
+ [449] = {.lex_state = 6, .external_lex_state = 4},
+ [450] = {.lex_state = 6, .external_lex_state = 4},
+ [451] = {.lex_state = 6, .external_lex_state = 4},
+ [452] = {.lex_state = 6, .external_lex_state = 4},
+ [453] = {.lex_state = 6, .external_lex_state = 4},
+ [454] = {.lex_state = 6, .external_lex_state = 4},
+ [455] = {.lex_state = 6, .external_lex_state = 3},
+ [456] = {.lex_state = 6, .external_lex_state = 4},
+ [457] = {.lex_state = 6, .external_lex_state = 4},
+ [458] = {.lex_state = 6, .external_lex_state = 4},
+ [459] = {.lex_state = 125, .external_lex_state = 2},
+ [460] = {.lex_state = 6, .external_lex_state = 4},
+ [461] = {.lex_state = 6, .external_lex_state = 4},
+ [462] = {.lex_state = 125, .external_lex_state = 2},
+ [463] = {.lex_state = 125, .external_lex_state = 2},
+ [464] = {.lex_state = 6, .external_lex_state = 3},
+ [465] = {.lex_state = 125, .external_lex_state = 2},
+ [466] = {.lex_state = 6, .external_lex_state = 3},
+ [467] = {.lex_state = 6, .external_lex_state = 3},
+ [468] = {.lex_state = 6, .external_lex_state = 3},
+ [469] = {.lex_state = 6, .external_lex_state = 3},
+ [470] = {.lex_state = 6, .external_lex_state = 4},
+ [471] = {.lex_state = 6, .external_lex_state = 4},
+ [472] = {.lex_state = 125, .external_lex_state = 2},
+ [473] = {.lex_state = 125, .external_lex_state = 2},
+ [474] = {.lex_state = 125, .external_lex_state = 2},
+ [475] = {.lex_state = 6, .external_lex_state = 4},
+ [476] = {.lex_state = 6, .external_lex_state = 4},
+ [477] = {.lex_state = 6, .external_lex_state = 4},
+ [478] = {.lex_state = 6, .external_lex_state = 4},
+ [479] = {.lex_state = 6, .external_lex_state = 3},
+ [480] = {.lex_state = 6, .external_lex_state = 3},
+ [481] = {.lex_state = 6, .external_lex_state = 4},
+ [482] = {.lex_state = 6, .external_lex_state = 3},
+ [483] = {.lex_state = 6, .external_lex_state = 3},
+ [484] = {.lex_state = 6, .external_lex_state = 3},
+ [485] = {.lex_state = 6, .external_lex_state = 3},
+ [486] = {.lex_state = 6, .external_lex_state = 3},
+ [487] = {.lex_state = 6, .external_lex_state = 4},
+ [488] = {.lex_state = 6, .external_lex_state = 3},
+ [489] = {.lex_state = 6, .external_lex_state = 3},
+ [490] = {.lex_state = 6, .external_lex_state = 3},
+ [491] = {.lex_state = 6, .external_lex_state = 3},
+ [492] = {.lex_state = 6, .external_lex_state = 3},
+ [493] = {.lex_state = 6, .external_lex_state = 3},
+ [494] = {.lex_state = 6, .external_lex_state = 3},
+ [495] = {.lex_state = 6, .external_lex_state = 3},
+ [496] = {.lex_state = 6, .external_lex_state = 3},
+ [497] = {.lex_state = 6, .external_lex_state = 3},
+ [498] = {.lex_state = 6, .external_lex_state = 3},
+ [499] = {.lex_state = 6, .external_lex_state = 3},
+ [500] = {.lex_state = 6, .external_lex_state = 3},
+ [501] = {.lex_state = 6, .external_lex_state = 3},
+ [502] = {.lex_state = 6, .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 = 4},
+ [506] = {.lex_state = 124, .external_lex_state = 4},
+ [507] = {.lex_state = 124, .external_lex_state = 3},
+ [508] = {.lex_state = 124, .external_lex_state = 4},
+ [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 = 7, .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 = 3},
+ [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 = 3},
+ [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 = 3},
+ [544] = {.lex_state = 124, .external_lex_state = 3},
+ [545] = {.lex_state = 124, .external_lex_state = 3},
+ [546] = {.lex_state = 124, .external_lex_state = 3},
+ [547] = {.lex_state = 124, .external_lex_state = 3},
+ [548] = {.lex_state = 124, .external_lex_state = 3},
+ [549] = {.lex_state = 124, .external_lex_state = 3},
+ [550] = {.lex_state = 124, .external_lex_state = 3},
+ [551] = {.lex_state = 124, .external_lex_state = 3},
+ [552] = {.lex_state = 124, .external_lex_state = 3},
+ [553] = {.lex_state = 124, .external_lex_state = 3},
+ [554] = {.lex_state = 124, .external_lex_state = 3},
+ [555] = {.lex_state = 124, .external_lex_state = 3},
+ [556] = {.lex_state = 124, .external_lex_state = 3},
+ [557] = {.lex_state = 124, .external_lex_state = 3},
+ [558] = {.lex_state = 124, .external_lex_state = 3},
+ [559] = {.lex_state = 124, .external_lex_state = 3},
+ [560] = {.lex_state = 124, .external_lex_state = 3},
+ [561] = {.lex_state = 124, .external_lex_state = 3},
+ [562] = {.lex_state = 124, .external_lex_state = 3},
+ [563] = {.lex_state = 124, .external_lex_state = 3},
+ [564] = {.lex_state = 124, .external_lex_state = 3},
+ [565] = {.lex_state = 124, .external_lex_state = 3},
+ [566] = {.lex_state = 124, .external_lex_state = 3},
+ [567] = {.lex_state = 124, .external_lex_state = 3},
+ [568] = {.lex_state = 124, .external_lex_state = 3},
+ [569] = {.lex_state = 124, .external_lex_state = 3},
+ [570] = {.lex_state = 124, .external_lex_state = 3},
+ [571] = {.lex_state = 124, .external_lex_state = 3},
+ [572] = {.lex_state = 124, .external_lex_state = 3},
+ [573] = {.lex_state = 124, .external_lex_state = 3},
+ [574] = {.lex_state = 124, .external_lex_state = 3},
+ [575] = {.lex_state = 124, .external_lex_state = 3},
+ [576] = {.lex_state = 124, .external_lex_state = 3},
+ [577] = {.lex_state = 124, .external_lex_state = 3},
+ [578] = {.lex_state = 124, .external_lex_state = 3},
+ [579] = {.lex_state = 124, .external_lex_state = 4},
+ [580] = {.lex_state = 124, .external_lex_state = 3},
+ [581] = {.lex_state = 124, .external_lex_state = 3},
+ [582] = {.lex_state = 124, .external_lex_state = 3},
+ [583] = {.lex_state = 124, .external_lex_state = 3},
+ [584] = {.lex_state = 124, .external_lex_state = 4},
+ [585] = {.lex_state = 124, .external_lex_state = 3},
+ [586] = {.lex_state = 124, .external_lex_state = 3},
+ [587] = {.lex_state = 124, .external_lex_state = 3},
+ [588] = {.lex_state = 124, .external_lex_state = 3},
+ [589] = {.lex_state = 124, .external_lex_state = 3},
+ [590] = {.lex_state = 124, .external_lex_state = 3},
+ [591] = {.lex_state = 124, .external_lex_state = 3},
+ [592] = {.lex_state = 124, .external_lex_state = 3},
+ [593] = {.lex_state = 124, .external_lex_state = 3},
+ [594] = {.lex_state = 124, .external_lex_state = 3},
+ [595] = {.lex_state = 124, .external_lex_state = 3},
+ [596] = {.lex_state = 124, .external_lex_state = 3},
+ [597] = {.lex_state = 124, .external_lex_state = 3},
+ [598] = {.lex_state = 124, .external_lex_state = 3},
+ [599] = {.lex_state = 124, .external_lex_state = 3},
+ [600] = {.lex_state = 124, .external_lex_state = 3},
+ [601] = {.lex_state = 124, .external_lex_state = 3},
+ [602] = {.lex_state = 124, .external_lex_state = 3},
+ [603] = {.lex_state = 124, .external_lex_state = 3},
+ [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 = 3},
+ [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 = 4},
+ [631] = {.lex_state = 124, .external_lex_state = 4},
+ [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 = 124, .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 = 3},
+ [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 = 4},
+ [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 = 4},
+ [665] = {.lex_state = 7, .external_lex_state = 4},
+ [666] = {.lex_state = 124, .external_lex_state = 4},
+ [667] = {.lex_state = 124, .external_lex_state = 3},
+ [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 = 3},
+ [672] = {.lex_state = 124, .external_lex_state = 4},
+ [673] = {.lex_state = 124, .external_lex_state = 4},
+ [674] = {.lex_state = 124, .external_lex_state = 4},
+ [675] = {.lex_state = 124, .external_lex_state = 4},
+ [676] = {.lex_state = 124, .external_lex_state = 4},
+ [677] = {.lex_state = 124, .external_lex_state = 4},
+ [678] = {.lex_state = 124, .external_lex_state = 4},
+ [679] = {.lex_state = 124, .external_lex_state = 4},
+ [680] = {.lex_state = 124, .external_lex_state = 4},
+ [681] = {.lex_state = 124, .external_lex_state = 4},
+ [682] = {.lex_state = 7, .external_lex_state = 4},
+ [683] = {.lex_state = 124, .external_lex_state = 4},
+ [684] = {.lex_state = 124, .external_lex_state = 4},
+ [685] = {.lex_state = 124, .external_lex_state = 4},
+ [686] = {.lex_state = 124, .external_lex_state = 4},
+ [687] = {.lex_state = 124, .external_lex_state = 4},
+ [688] = {.lex_state = 124, .external_lex_state = 4},
+ [689] = {.lex_state = 124, .external_lex_state = 4},
+ [690] = {.lex_state = 124, .external_lex_state = 4},
+ [691] = {.lex_state = 124, .external_lex_state = 4},
+ [692] = {.lex_state = 124, .external_lex_state = 4},
+ [693] = {.lex_state = 124, .external_lex_state = 4},
+ [694] = {.lex_state = 124, .external_lex_state = 4},
+ [695] = {.lex_state = 124, .external_lex_state = 4},
+ [696] = {.lex_state = 124, .external_lex_state = 4},
+ [697] = {.lex_state = 124, .external_lex_state = 4},
+ [698] = {.lex_state = 124, .external_lex_state = 4},
+ [699] = {.lex_state = 124, .external_lex_state = 4},
+ [700] = {.lex_state = 124, .external_lex_state = 4},
+ [701] = {.lex_state = 124, .external_lex_state = 4},
+ [702] = {.lex_state = 124, .external_lex_state = 4},
+ [703] = {.lex_state = 124, .external_lex_state = 4},
+ [704] = {.lex_state = 124, .external_lex_state = 4},
+ [705] = {.lex_state = 124, .external_lex_state = 4},
+ [706] = {.lex_state = 124, .external_lex_state = 4},
+ [707] = {.lex_state = 124, .external_lex_state = 4},
+ [708] = {.lex_state = 124, .external_lex_state = 4},
+ [709] = {.lex_state = 124, .external_lex_state = 4},
+ [710] = {.lex_state = 124, .external_lex_state = 4},
+ [711] = {.lex_state = 124, .external_lex_state = 4},
+ [712] = {.lex_state = 124, .external_lex_state = 4},
+ [713] = {.lex_state = 124, .external_lex_state = 4},
+ [714] = {.lex_state = 124, .external_lex_state = 4},
+ [715] = {.lex_state = 124, .external_lex_state = 4},
+ [716] = {.lex_state = 124, .external_lex_state = 4},
+ [717] = {.lex_state = 124, .external_lex_state = 4},
+ [718] = {.lex_state = 124, .external_lex_state = 4},
+ [719] = {.lex_state = 124, .external_lex_state = 4},
+ [720] = {.lex_state = 124, .external_lex_state = 4},
+ [721] = {.lex_state = 124, .external_lex_state = 4},
+ [722] = {.lex_state = 124, .external_lex_state = 4},
+ [723] = {.lex_state = 124, .external_lex_state = 4},
+ [724] = {.lex_state = 124, .external_lex_state = 4},
+ [725] = {.lex_state = 124, .external_lex_state = 4},
+ [726] = {.lex_state = 124, .external_lex_state = 4},
+ [727] = {.lex_state = 124, .external_lex_state = 4},
+ [728] = {.lex_state = 124, .external_lex_state = 4},
+ [729] = {.lex_state = 124, .external_lex_state = 4},
+ [730] = {.lex_state = 124, .external_lex_state = 4},
+ [731] = {.lex_state = 124, .external_lex_state = 4},
+ [732] = {.lex_state = 124, .external_lex_state = 4},
+ [733] = {.lex_state = 124, .external_lex_state = 4},
+ [734] = {.lex_state = 124, .external_lex_state = 4},
+ [735] = {.lex_state = 124, .external_lex_state = 3},
+ [736] = {.lex_state = 124, .external_lex_state = 4},
+ [737] = {.lex_state = 124, .external_lex_state = 3},
+ [738] = {.lex_state = 124, .external_lex_state = 4},
+ [739] = {.lex_state = 124, .external_lex_state = 3},
+ [740] = {.lex_state = 124, .external_lex_state = 3},
+ [741] = {.lex_state = 124, .external_lex_state = 3},
+ [742] = {.lex_state = 124, .external_lex_state = 3},
+ [743] = {.lex_state = 124, .external_lex_state = 4},
+ [744] = {.lex_state = 124, .external_lex_state = 3},
+ [745] = {.lex_state = 124, .external_lex_state = 4},
+ [746] = {.lex_state = 124, .external_lex_state = 4},
+ [747] = {.lex_state = 124, .external_lex_state = 4},
+ [748] = {.lex_state = 124, .external_lex_state = 4},
+ [749] = {.lex_state = 124, .external_lex_state = 4},
+ [750] = {.lex_state = 124, .external_lex_state = 3},
+ [751] = {.lex_state = 124, .external_lex_state = 3},
+ [752] = {.lex_state = 124, .external_lex_state = 3},
+ [753] = {.lex_state = 124, .external_lex_state = 3},
+ [754] = {.lex_state = 124, .external_lex_state = 3},
+ [755] = {.lex_state = 124, .external_lex_state = 3},
+ [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 = 124, .external_lex_state = 3},
+ [764] = {.lex_state = 124, .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 = 3},
+ [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 = 124, .external_lex_state = 3},
+ [786] = {.lex_state = 124, .external_lex_state = 3},
+ [787] = {.lex_state = 124, .external_lex_state = 3},
+ [788] = {.lex_state = 124, .external_lex_state = 3},
+ [789] = {.lex_state = 124, .external_lex_state = 3},
+ [790] = {.lex_state = 124, .external_lex_state = 3},
+ [791] = {.lex_state = 124, .external_lex_state = 3},
+ [792] = {.lex_state = 124, .external_lex_state = 3},
+ [793] = {.lex_state = 124, .external_lex_state = 3},
+ [794] = {.lex_state = 124, .external_lex_state = 3},
+ [795] = {.lex_state = 124, .external_lex_state = 3},
+ [796] = {.lex_state = 124, .external_lex_state = 3},
+ [797] = {.lex_state = 124, .external_lex_state = 3},
+ [798] = {.lex_state = 124, .external_lex_state = 3},
+ [799] = {.lex_state = 124, .external_lex_state = 3},
+ [800] = {.lex_state = 124, .external_lex_state = 3},
+ [801] = {.lex_state = 124, .external_lex_state = 3},
+ [802] = {.lex_state = 124, .external_lex_state = 3},
+ [803] = {.lex_state = 124, .external_lex_state = 3},
+ [804] = {.lex_state = 124, .external_lex_state = 3},
+ [805] = {.lex_state = 124, .external_lex_state = 3},
+ [806] = {.lex_state = 124, .external_lex_state = 3},
+ [807] = {.lex_state = 124, .external_lex_state = 3},
+ [808] = {.lex_state = 124, .external_lex_state = 3},
+ [809] = {.lex_state = 124, .external_lex_state = 3},
+ [810] = {.lex_state = 124, .external_lex_state = 3},
+ [811] = {.lex_state = 124, .external_lex_state = 3},
+ [812] = {.lex_state = 124, .external_lex_state = 3},
+ [813] = {.lex_state = 124, .external_lex_state = 3},
+ [814] = {.lex_state = 124, .external_lex_state = 3},
+ [815] = {.lex_state = 124, .external_lex_state = 4},
+ [816] = {.lex_state = 124, .external_lex_state = 3},
+ [817] = {.lex_state = 124, .external_lex_state = 3},
+ [818] = {.lex_state = 124, .external_lex_state = 3},
+ [819] = {.lex_state = 124, .external_lex_state = 3},
+ [820] = {.lex_state = 124, .external_lex_state = 3},
+ [821] = {.lex_state = 124, .external_lex_state = 3},
+ [822] = {.lex_state = 7, .external_lex_state = 3},
+ [823] = {.lex_state = 4, .external_lex_state = 2},
+ [824] = {.lex_state = 4, .external_lex_state = 2},
+ [825] = {.lex_state = 124, .external_lex_state = 4},
+ [826] = {.lex_state = 4, .external_lex_state = 2},
+ [827] = {.lex_state = 4, .external_lex_state = 2},
+ [828] = {.lex_state = 4, .external_lex_state = 2},
+ [829] = {.lex_state = 4, .external_lex_state = 2},
+ [830] = {.lex_state = 124, .external_lex_state = 3},
+ [831] = {.lex_state = 124, .external_lex_state = 4},
+ [832] = {.lex_state = 124, .external_lex_state = 3},
+ [833] = {.lex_state = 124, .external_lex_state = 3},
+ [834] = {.lex_state = 124, .external_lex_state = 3},
+ [835] = {.lex_state = 124, .external_lex_state = 3},
+ [836] = {.lex_state = 124, .external_lex_state = 3},
+ [837] = {.lex_state = 124, .external_lex_state = 3},
+ [838] = {.lex_state = 124, .external_lex_state = 3},
+ [839] = {.lex_state = 124, .external_lex_state = 3},
+ [840] = {.lex_state = 124, .external_lex_state = 3},
+ [841] = {.lex_state = 124, .external_lex_state = 3},
+ [842] = {.lex_state = 124, .external_lex_state = 3},
+ [843] = {.lex_state = 124, .external_lex_state = 3},
+ [844] = {.lex_state = 124, .external_lex_state = 3},
+ [845] = {.lex_state = 124, .external_lex_state = 3},
+ [846] = {.lex_state = 124, .external_lex_state = 3},
+ [847] = {.lex_state = 124, .external_lex_state = 3},
+ [848] = {.lex_state = 124, .external_lex_state = 3},
+ [849] = {.lex_state = 124, .external_lex_state = 3},
+ [850] = {.lex_state = 124, .external_lex_state = 3},
+ [851] = {.lex_state = 124, .external_lex_state = 3},
+ [852] = {.lex_state = 124, .external_lex_state = 3},
+ [853] = {.lex_state = 124, .external_lex_state = 3},
+ [854] = {.lex_state = 124, .external_lex_state = 3},
+ [855] = {.lex_state = 124, .external_lex_state = 3},
+ [856] = {.lex_state = 124, .external_lex_state = 3},
+ [857] = {.lex_state = 124, .external_lex_state = 3},
+ [858] = {.lex_state = 124, .external_lex_state = 3},
+ [859] = {.lex_state = 124, .external_lex_state = 3},
+ [860] = {.lex_state = 124, .external_lex_state = 3},
+ [861] = {.lex_state = 124, .external_lex_state = 3},
+ [862] = {.lex_state = 124, .external_lex_state = 3},
+ [863] = {.lex_state = 124, .external_lex_state = 3},
+ [864] = {.lex_state = 124, .external_lex_state = 3},
+ [865] = {.lex_state = 124, .external_lex_state = 3},
+ [866] = {.lex_state = 4, .external_lex_state = 2},
+ [867] = {.lex_state = 124, .external_lex_state = 3},
+ [868] = {.lex_state = 124, .external_lex_state = 3},
+ [869] = {.lex_state = 4, .external_lex_state = 2},
+ [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 = 4, .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 = 125, .external_lex_state = 2},
+ [879] = {.lex_state = 4, .external_lex_state = 2},
+ [880] = {.lex_state = 125, .external_lex_state = 2},
+ [881] = {.lex_state = 125, .external_lex_state = 2},
+ [882] = {.lex_state = 125, .external_lex_state = 2},
+ [883] = {.lex_state = 125, .external_lex_state = 2},
+ [884] = {.lex_state = 125, .external_lex_state = 2},
+ [885] = {.lex_state = 125, .external_lex_state = 2},
+ [886] = {.lex_state = 125, .external_lex_state = 2},
+ [887] = {.lex_state = 125, .external_lex_state = 2},
+ [888] = {.lex_state = 125, .external_lex_state = 2},
+ [889] = {.lex_state = 125, .external_lex_state = 2},
+ [890] = {.lex_state = 125, .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 = 5},
+ [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 = 4, .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 = 5},
+ [907] = {.lex_state = 125, .external_lex_state = 5},
+ [908] = {.lex_state = 125, .external_lex_state = 5},
+ [909] = {.lex_state = 125, .external_lex_state = 2},
+ [910] = {.lex_state = 4, .external_lex_state = 2},
+ [911] = {.lex_state = 125, .external_lex_state = 5},
+ [912] = {.lex_state = 125, .external_lex_state = 2},
+ [913] = {.lex_state = 125, .external_lex_state = 5},
+ [914] = {.lex_state = 125, .external_lex_state = 2},
+ [915] = {.lex_state = 4, .external_lex_state = 2},
+ [916] = {.lex_state = 125, .external_lex_state = 5},
+ [917] = {.lex_state = 9, .external_lex_state = 2},
+ [918] = {.lex_state = 125, .external_lex_state = 5},
+ [919] = {.lex_state = 125, .external_lex_state = 5},
+ [920] = {.lex_state = 125, .external_lex_state = 5},
+ [921] = {.lex_state = 125, .external_lex_state = 5},
+ [922] = {.lex_state = 125, .external_lex_state = 2},
+ [923] = {.lex_state = 125, .external_lex_state = 5},
+ [924] = {.lex_state = 4, .external_lex_state = 2},
+ [925] = {.lex_state = 4, .external_lex_state = 2},
+ [926] = {.lex_state = 4, .external_lex_state = 2},
+ [927] = {.lex_state = 4, .external_lex_state = 2},
+ [928] = {.lex_state = 4, .external_lex_state = 2},
+ [929] = {.lex_state = 9, .external_lex_state = 2},
+ [930] = {.lex_state = 4, .external_lex_state = 2},
+ [931] = {.lex_state = 4, .external_lex_state = 2},
+ [932] = {.lex_state = 4, .external_lex_state = 2},
+ [933] = {.lex_state = 4, .external_lex_state = 2},
+ [934] = {.lex_state = 4, .external_lex_state = 2},
+ [935] = {.lex_state = 4, .external_lex_state = 2},
+ [936] = {.lex_state = 4, .external_lex_state = 2},
+ [937] = {.lex_state = 4, .external_lex_state = 2},
+ [938] = {.lex_state = 4, .external_lex_state = 2},
+ [939] = {.lex_state = 4, .external_lex_state = 2},
+ [940] = {.lex_state = 4, .external_lex_state = 2},
+ [941] = {.lex_state = 4, .external_lex_state = 2},
+ [942] = {.lex_state = 4, .external_lex_state = 2},
+ [943] = {.lex_state = 4, .external_lex_state = 2},
+ [944] = {.lex_state = 4, .external_lex_state = 2},
+ [945] = {.lex_state = 4, .external_lex_state = 2},
+ [946] = {.lex_state = 4, .external_lex_state = 2},
+ [947] = {.lex_state = 4, .external_lex_state = 2},
+ [948] = {.lex_state = 4, .external_lex_state = 5},
+ [949] = {.lex_state = 4, .external_lex_state = 2},
+ [950] = {.lex_state = 4, .external_lex_state = 2},
+ [951] = {.lex_state = 4, .external_lex_state = 2},
+ [952] = {.lex_state = 4, .external_lex_state = 2},
+ [953] = {.lex_state = 4, .external_lex_state = 5},
+ [954] = {.lex_state = 4, .external_lex_state = 2},
+ [955] = {.lex_state = 4, .external_lex_state = 2},
+ [956] = {.lex_state = 4, .external_lex_state = 2},
+ [957] = {.lex_state = 4, .external_lex_state = 2},
+ [958] = {.lex_state = 4, .external_lex_state = 2},
+ [959] = {.lex_state = 125, .external_lex_state = 2},
+ [960] = {.lex_state = 125, .external_lex_state = 2},
+ [961] = {.lex_state = 125, .external_lex_state = 2},
+ [962] = {.lex_state = 4, .external_lex_state = 2},
+ [963] = {.lex_state = 4, .external_lex_state = 2},
+ [964] = {.lex_state = 125, .external_lex_state = 2},
+ [965] = {.lex_state = 125, .external_lex_state = 2},
+ [966] = {.lex_state = 125, .external_lex_state = 2},
+ [967] = {.lex_state = 125, .external_lex_state = 2},
+ [968] = {.lex_state = 125, .external_lex_state = 2},
+ [969] = {.lex_state = 4, .external_lex_state = 2},
+ [970] = {.lex_state = 125, .external_lex_state = 2},
+ [971] = {.lex_state = 4, .external_lex_state = 2},
+ [972] = {.lex_state = 125, .external_lex_state = 2},
+ [973] = {.lex_state = 125, .external_lex_state = 2},
+ [974] = {.lex_state = 125, .external_lex_state = 2},
+ [975] = {.lex_state = 125, .external_lex_state = 2},
+ [976] = {.lex_state = 4, .external_lex_state = 2},
+ [977] = {.lex_state = 125, .external_lex_state = 2},
+ [978] = {.lex_state = 125, .external_lex_state = 2},
+ [979] = {.lex_state = 125, .external_lex_state = 2},
+ [980] = {.lex_state = 125, .external_lex_state = 2},
+ [981] = {.lex_state = 125, .external_lex_state = 2},
+ [982] = {.lex_state = 125, .external_lex_state = 2},
+ [983] = {.lex_state = 125, .external_lex_state = 2},
+ [984] = {.lex_state = 125, .external_lex_state = 2},
+ [985] = {.lex_state = 125, .external_lex_state = 2},
+ [986] = {.lex_state = 125, .external_lex_state = 2},
+ [987] = {.lex_state = 125, .external_lex_state = 2},
+ [988] = {.lex_state = 125, .external_lex_state = 2},
+ [989] = {.lex_state = 125, .external_lex_state = 2},
+ [990] = {.lex_state = 125, .external_lex_state = 2},
+ [991] = {.lex_state = 125, .external_lex_state = 2},
+ [992] = {.lex_state = 125, .external_lex_state = 2},
+ [993] = {.lex_state = 125, .external_lex_state = 2},
+ [994] = {.lex_state = 125, .external_lex_state = 2},
+ [995] = {.lex_state = 125, .external_lex_state = 2},
+ [996] = {.lex_state = 125, .external_lex_state = 2},
+ [997] = {.lex_state = 125, .external_lex_state = 2},
+ [998] = {.lex_state = 125, .external_lex_state = 2},
+ [999] = {.lex_state = 125, .external_lex_state = 2},
+ [1000] = {.lex_state = 4, .external_lex_state = 2},
+ [1001] = {.lex_state = 4, .external_lex_state = 2},
+ [1002] = {.lex_state = 4, .external_lex_state = 2},
+ [1003] = {.lex_state = 125, .external_lex_state = 2},
+ [1004] = {.lex_state = 4, .external_lex_state = 2},
+ [1005] = {.lex_state = 125, .external_lex_state = 2},
+ [1006] = {.lex_state = 4, .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 = 6, .external_lex_state = 2},
+ [1016] = {.lex_state = 125, .external_lex_state = 2},
+ [1017] = {.lex_state = 125, .external_lex_state = 2},
+ [1018] = {.lex_state = 6, .external_lex_state = 2},
+ [1019] = {.lex_state = 6, .external_lex_state = 2},
+ [1020] = {.lex_state = 125, .external_lex_state = 2},
+ [1021] = {.lex_state = 125, .external_lex_state = 2},
+ [1022] = {.lex_state = 125, .external_lex_state = 2},
+ [1023] = {.lex_state = 6, .external_lex_state = 2},
+ [1024] = {.lex_state = 125, .external_lex_state = 2},
+ [1025] = {.lex_state = 125, .external_lex_state = 2},
+ [1026] = {.lex_state = 125, .external_lex_state = 2},
+ [1027] = {.lex_state = 125, .external_lex_state = 2},
+ [1028] = {.lex_state = 125, .external_lex_state = 2},
+ [1029] = {.lex_state = 6, .external_lex_state = 2},
+ [1030] = {.lex_state = 125, .external_lex_state = 2},
+ [1031] = {.lex_state = 124, .external_lex_state = 2},
+ [1032] = {.lex_state = 9, .external_lex_state = 6},
+ [1033] = {.lex_state = 9, .external_lex_state = 6},
+ [1034] = {.lex_state = 31, .external_lex_state = 2},
+ [1035] = {.lex_state = 9, .external_lex_state = 6},
+ [1036] = {.lex_state = 31, .external_lex_state = 2},
+ [1037] = {.lex_state = 9, .external_lex_state = 6},
+ [1038] = {.lex_state = 9, .external_lex_state = 6},
+ [1039] = {.lex_state = 9, .external_lex_state = 6},
+ [1040] = {.lex_state = 31, .external_lex_state = 2},
+ [1041] = {.lex_state = 9, .external_lex_state = 6},
+ [1042] = {.lex_state = 31, .external_lex_state = 2},
+ [1043] = {.lex_state = 9, .external_lex_state = 6},
+ [1044] = {.lex_state = 31, .external_lex_state = 2},
+ [1045] = {.lex_state = 9, .external_lex_state = 6},
+ [1046] = {.lex_state = 31, .external_lex_state = 2},
+ [1047] = {.lex_state = 31, .external_lex_state = 2},
+ [1048] = {.lex_state = 31, .external_lex_state = 2},
+ [1049] = {.lex_state = 31, .external_lex_state = 2},
+ [1050] = {.lex_state = 31, .external_lex_state = 2},
+ [1051] = {.lex_state = 31, .external_lex_state = 2},
+ [1052] = {.lex_state = 31, .external_lex_state = 2},
+ [1053] = {.lex_state = 125, .external_lex_state = 2},
+ [1054] = {.lex_state = 31, .external_lex_state = 2},
+ [1055] = {.lex_state = 31, .external_lex_state = 2},
+ [1056] = {.lex_state = 125, .external_lex_state = 2},
+ [1057] = {.lex_state = 31, .external_lex_state = 2},
+ [1058] = {.lex_state = 31, .external_lex_state = 2},
+ [1059] = {.lex_state = 31, .external_lex_state = 2},
+ [1060] = {.lex_state = 31, .external_lex_state = 2},
+ [1061] = {.lex_state = 31, .external_lex_state = 2},
+ [1062] = {.lex_state = 31, .external_lex_state = 2},
+ [1063] = {.lex_state = 31, .external_lex_state = 2},
+ [1064] = {.lex_state = 31, .external_lex_state = 2},
+ [1065] = {.lex_state = 31, .external_lex_state = 2},
+ [1066] = {.lex_state = 31, .external_lex_state = 2},
+ [1067] = {.lex_state = 31, .external_lex_state = 2},
+ [1068] = {.lex_state = 31, .external_lex_state = 2},
+ [1069] = {.lex_state = 31, .external_lex_state = 2},
+ [1070] = {.lex_state = 31, .external_lex_state = 2},
+ [1071] = {.lex_state = 31, .external_lex_state = 2},
+ [1072] = {.lex_state = 31, .external_lex_state = 2},
+ [1073] = {.lex_state = 31, .external_lex_state = 2},
+ [1074] = {.lex_state = 31, .external_lex_state = 2},
+ [1075] = {.lex_state = 31, .external_lex_state = 2},
+ [1076] = {.lex_state = 125, .external_lex_state = 2},
+ [1077] = {.lex_state = 125, .external_lex_state = 2},
+ [1078] = {.lex_state = 125, .external_lex_state = 2},
+ [1079] = {.lex_state = 125, .external_lex_state = 2},
+ [1080] = {.lex_state = 125, .external_lex_state = 2},
+ [1081] = {.lex_state = 125, .external_lex_state = 2},
+ [1082] = {.lex_state = 125, .external_lex_state = 2},
+ [1083] = {.lex_state = 125, .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 = 125, .external_lex_state = 2},
+ [1090] = {.lex_state = 125, .external_lex_state = 2},
+ [1091] = {.lex_state = 125, .external_lex_state = 2},
+ [1092] = {.lex_state = 125, .external_lex_state = 5},
+ [1093] = {.lex_state = 125, .external_lex_state = 2},
+ [1094] = {.lex_state = 31, .external_lex_state = 2},
+ [1095] = {.lex_state = 125, .external_lex_state = 2},
+ [1096] = {.lex_state = 125, .external_lex_state = 2},
+ [1097] = {.lex_state = 125, .external_lex_state = 2},
+ [1098] = {.lex_state = 125, .external_lex_state = 2},
+ [1099] = {.lex_state = 125, .external_lex_state = 5},
+ [1100] = {.lex_state = 125, .external_lex_state = 2},
+ [1101] = {.lex_state = 125, .external_lex_state = 2},
+ [1102] = {.lex_state = 125, .external_lex_state = 2},
+ [1103] = {.lex_state = 125, .external_lex_state = 2},
+ [1104] = {.lex_state = 125, .external_lex_state = 2},
+ [1105] = {.lex_state = 31, .external_lex_state = 2},
+ [1106] = {.lex_state = 16, .external_lex_state = 7},
+ [1107] = {.lex_state = 125, .external_lex_state = 2},
+ [1108] = {.lex_state = 125, .external_lex_state = 2},
+ [1109] = {.lex_state = 125, .external_lex_state = 5},
+ [1110] = {.lex_state = 125, .external_lex_state = 5},
+ [1111] = {.lex_state = 125, .external_lex_state = 5},
+ [1112] = {.lex_state = 125, .external_lex_state = 2},
+ [1113] = {.lex_state = 125, .external_lex_state = 2},
+ [1114] = {.lex_state = 125, .external_lex_state = 5},
+ [1115] = {.lex_state = 16, .external_lex_state = 7},
+ [1116] = {.lex_state = 125, .external_lex_state = 5},
+ [1117] = {.lex_state = 125, .external_lex_state = 2},
+ [1118] = {.lex_state = 125, .external_lex_state = 5},
+ [1119] = {.lex_state = 31, .external_lex_state = 2},
+ [1120] = {.lex_state = 125, .external_lex_state = 2},
+ [1121] = {.lex_state = 125, .external_lex_state = 5},
+ [1122] = {.lex_state = 16, .external_lex_state = 7},
+ [1123] = {.lex_state = 16, .external_lex_state = 7},
+ [1124] = {.lex_state = 31, .external_lex_state = 2},
+ [1125] = {.lex_state = 125, .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 = 5},
+ [1129] = {.lex_state = 125, .external_lex_state = 5},
+ [1130] = {.lex_state = 125, .external_lex_state = 5},
+ [1131] = {.lex_state = 125, .external_lex_state = 2},
+ [1132] = {.lex_state = 16, .external_lex_state = 7},
+ [1133] = {.lex_state = 125, .external_lex_state = 2},
+ [1134] = {.lex_state = 9, .external_lex_state = 6},
+ [1135] = {.lex_state = 125, .external_lex_state = 2},
+ [1136] = {.lex_state = 9, .external_lex_state = 6},
+ [1137] = {.lex_state = 31, .external_lex_state = 2},
+ [1138] = {.lex_state = 125, .external_lex_state = 2},
+ [1139] = {.lex_state = 31, .external_lex_state = 2},
+ [1140] = {.lex_state = 31, .external_lex_state = 2},
+ [1141] = {.lex_state = 125, .external_lex_state = 2},
+ [1142] = {.lex_state = 125, .external_lex_state = 2},
+ [1143] = {.lex_state = 31, .external_lex_state = 2},
+ [1144] = {.lex_state = 31, .external_lex_state = 2},
+ [1145] = {.lex_state = 31, .external_lex_state = 2},
+ [1146] = {.lex_state = 9, .external_lex_state = 6},
+ [1147] = {.lex_state = 9, .external_lex_state = 6},
+ [1148] = {.lex_state = 31, .external_lex_state = 2},
+ [1149] = {.lex_state = 9, .external_lex_state = 6},
+ [1150] = {.lex_state = 9, .external_lex_state = 6},
+ [1151] = {.lex_state = 125, .external_lex_state = 2},
+ [1152] = {.lex_state = 9, .external_lex_state = 6},
+ [1153] = {.lex_state = 125, .external_lex_state = 2},
+ [1154] = {.lex_state = 9, .external_lex_state = 6},
+ [1155] = {.lex_state = 9, .external_lex_state = 6},
+ [1156] = {.lex_state = 125, .external_lex_state = 2},
+ [1157] = {.lex_state = 9, .external_lex_state = 6},
+ [1158] = {.lex_state = 125, .external_lex_state = 2},
+ [1159] = {.lex_state = 125, .external_lex_state = 2},
+ [1160] = {.lex_state = 125, .external_lex_state = 2},
+ [1161] = {.lex_state = 125, .external_lex_state = 2},
+ [1162] = {.lex_state = 31, .external_lex_state = 2},
+ [1163] = {.lex_state = 31, .external_lex_state = 2},
+ [1164] = {.lex_state = 31, .external_lex_state = 2},
+ [1165] = {.lex_state = 9, .external_lex_state = 6},
+ [1166] = {.lex_state = 125, .external_lex_state = 2},
+ [1167] = {.lex_state = 125, .external_lex_state = 5},
+ [1168] = {.lex_state = 31, .external_lex_state = 2},
+ [1169] = {.lex_state = 125, .external_lex_state = 2},
+ [1170] = {.lex_state = 125, .external_lex_state = 2},
+ [1171] = {.lex_state = 125, .external_lex_state = 2},
+ [1172] = {.lex_state = 9, .external_lex_state = 6},
+ [1173] = {.lex_state = 31, .external_lex_state = 2},
+ [1174] = {.lex_state = 125, .external_lex_state = 2},
+ [1175] = {.lex_state = 125, .external_lex_state = 2},
+ [1176] = {.lex_state = 125, .external_lex_state = 2},
+ [1177] = {.lex_state = 31, .external_lex_state = 2},
+ [1178] = {.lex_state = 31, .external_lex_state = 2},
+ [1179] = {.lex_state = 9, .external_lex_state = 6},
+ [1180] = {.lex_state = 31, .external_lex_state = 2},
+ [1181] = {.lex_state = 31, .external_lex_state = 2},
+ [1182] = {.lex_state = 31, .external_lex_state = 2},
+ [1183] = {.lex_state = 31, .external_lex_state = 2},
+ [1184] = {.lex_state = 31, .external_lex_state = 2},
+ [1185] = {.lex_state = 125, .external_lex_state = 2},
+ [1186] = {.lex_state = 9, .external_lex_state = 6},
+ [1187] = {.lex_state = 31, .external_lex_state = 2},
+ [1188] = {.lex_state = 31, .external_lex_state = 2},
+ [1189] = {.lex_state = 9, .external_lex_state = 6},
+ [1190] = {.lex_state = 125, .external_lex_state = 2},
+ [1191] = {.lex_state = 125, .external_lex_state = 5},
+ [1192] = {.lex_state = 31, .external_lex_state = 2},
+ [1193] = {.lex_state = 31, .external_lex_state = 2},
+ [1194] = {.lex_state = 125, .external_lex_state = 5},
+ [1195] = {.lex_state = 9, .external_lex_state = 6},
+ [1196] = {.lex_state = 125, .external_lex_state = 5},
+ [1197] = {.lex_state = 125, .external_lex_state = 2},
+ [1198] = {.lex_state = 31, .external_lex_state = 2},
+ [1199] = {.lex_state = 9, .external_lex_state = 6},
+ [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 = 10, .external_lex_state = 2},
+ [1206] = {.lex_state = 125, .external_lex_state = 2},
+ [1207] = {.lex_state = 125, .external_lex_state = 2},
+ [1208] = {.lex_state = 125, .external_lex_state = 2},
+ [1209] = {.lex_state = 18, .external_lex_state = 2},
+ [1210] = {.lex_state = 125, .external_lex_state = 2},
+ [1211] = {.lex_state = 125, .external_lex_state = 5},
+ [1212] = {.lex_state = 125, .external_lex_state = 2},
+ [1213] = {.lex_state = 10, .external_lex_state = 2},
+ [1214] = {.lex_state = 12, .external_lex_state = 8},
+ [1215] = {.lex_state = 125, .external_lex_state = 2},
+ [1216] = {.lex_state = 125, .external_lex_state = 2},
+ [1217] = {.lex_state = 125, .external_lex_state = 2},
+ [1218] = {.lex_state = 18, .external_lex_state = 2},
+ [1219] = {.lex_state = 125, .external_lex_state = 2},
+ [1220] = {.lex_state = 125, .external_lex_state = 2},
+ [1221] = {.lex_state = 125, .external_lex_state = 2},
+ [1222] = {.lex_state = 20, .external_lex_state = 8},
+ [1223] = {.lex_state = 125, .external_lex_state = 5},
+ [1224] = {.lex_state = 20, .external_lex_state = 8},
+ [1225] = {.lex_state = 20, .external_lex_state = 8},
+ [1226] = {.lex_state = 12, .external_lex_state = 8},
+ [1227] = {.lex_state = 20, .external_lex_state = 8},
+ [1228] = {.lex_state = 125, .external_lex_state = 2},
+ [1229] = {.lex_state = 125, .external_lex_state = 2},
+ [1230] = {.lex_state = 125, .external_lex_state = 2},
+ [1231] = {.lex_state = 125, .external_lex_state = 5},
+ [1232] = {.lex_state = 124, .external_lex_state = 2},
+ [1233] = {.lex_state = 125, .external_lex_state = 2},
+ [1234] = {.lex_state = 125, .external_lex_state = 2},
+ [1235] = {.lex_state = 12, .external_lex_state = 8},
+ [1236] = {.lex_state = 20, .external_lex_state = 8},
+ [1237] = {.lex_state = 125, .external_lex_state = 2},
+ [1238] = {.lex_state = 125, .external_lex_state = 2},
+ [1239] = {.lex_state = 20, .external_lex_state = 8},
+ [1240] = {.lex_state = 125, .external_lex_state = 5},
+ [1241] = {.lex_state = 125, .external_lex_state = 2},
+ [1242] = {.lex_state = 125, .external_lex_state = 5},
+ [1243] = {.lex_state = 125, .external_lex_state = 2},
+ [1244] = {.lex_state = 12, .external_lex_state = 8},
+ [1245] = {.lex_state = 12, .external_lex_state = 8},
+ [1246] = {.lex_state = 125, .external_lex_state = 2},
+ [1247] = {.lex_state = 12, .external_lex_state = 8},
+ [1248] = {.lex_state = 125, .external_lex_state = 5},
+ [1249] = {.lex_state = 12, .external_lex_state = 8},
+ [1250] = {.lex_state = 20, .external_lex_state = 8},
+ [1251] = {.lex_state = 125, .external_lex_state = 2},
+ [1252] = {.lex_state = 20, .external_lex_state = 8},
+ [1253] = {.lex_state = 125, .external_lex_state = 2},
+ [1254] = {.lex_state = 125, .external_lex_state = 2},
+ [1255] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 2},
+ [1260] = {.lex_state = 125, .external_lex_state = 5},
+ [1261] = {.lex_state = 125, .external_lex_state = 5},
+ [1262] = {.lex_state = 125, .external_lex_state = 2},
+ [1263] = {.lex_state = 10, .external_lex_state = 2},
+ [1264] = {.lex_state = 18, .external_lex_state = 2},
+ [1265] = {.lex_state = 16, .external_lex_state = 7},
+ [1266] = {.lex_state = 12, .external_lex_state = 8},
+ [1267] = {.lex_state = 125, .external_lex_state = 2},
+ [1268] = {.lex_state = 125, .external_lex_state = 5},
+ [1269] = {.lex_state = 12, .external_lex_state = 8},
+ [1270] = {.lex_state = 125, .external_lex_state = 5},
+ [1271] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 2},
+ [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 = 125, .external_lex_state = 2},
+ [1293] = {.lex_state = 125, .external_lex_state = 5},
+ [1294] = {.lex_state = 125, .external_lex_state = 2},
+ [1295] = {.lex_state = 125, .external_lex_state = 2},
+ [1296] = {.lex_state = 125, .external_lex_state = 2},
+ [1297] = {.lex_state = 125, .external_lex_state = 2},
+ [1298] = {.lex_state = 125, .external_lex_state = 2},
+ [1299] = {.lex_state = 125, .external_lex_state = 2},
+ [1300] = {.lex_state = 125, .external_lex_state = 2},
+ [1301] = {.lex_state = 125, .external_lex_state = 2},
+ [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 = 5},
+ [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 = 5},
+ [1314] = {.lex_state = 5, .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 = 5},
+ [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 = 125, .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 = 5},
+ [1328] = {.lex_state = 125, .external_lex_state = 2},
+ [1329] = {.lex_state = 125, .external_lex_state = 5},
+ [1330] = {.lex_state = 125, .external_lex_state = 2},
+ [1331] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 124, .external_lex_state = 2},
+ [1338] = {.lex_state = 125, .external_lex_state = 2},
+ [1339] = {.lex_state = 125, .external_lex_state = 2},
+ [1340] = {.lex_state = 124, .external_lex_state = 2},
+ [1341] = {.lex_state = 125, .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 = 5, .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 = 2},
+ [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 = 5},
+ [1360] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 5, .external_lex_state = 2},
+ [1366] = {.lex_state = 125, .external_lex_state = 2},
+ [1367] = {.lex_state = 125, .external_lex_state = 2},
+ [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 = 125, .external_lex_state = 2},
+ [1376] = {.lex_state = 125, .external_lex_state = 2},
+ [1377] = {.lex_state = 125, .external_lex_state = 2},
+ [1378] = {.lex_state = 125, .external_lex_state = 2},
+ [1379] = {.lex_state = 125, .external_lex_state = 2},
+ [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 = 2},
+ [1390] = {.lex_state = 125, .external_lex_state = 2},
+ [1391] = {.lex_state = 125, .external_lex_state = 2},
+ [1392] = {.lex_state = 5, .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 = 5},
+ [1398] = {.lex_state = 125, .external_lex_state = 5},
+ [1399] = {.lex_state = 125, .external_lex_state = 5},
+ [1400] = {.lex_state = 125, .external_lex_state = 2},
+ [1401] = {.lex_state = 125, .external_lex_state = 5},
+ [1402] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 5},
+ [1407] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 5, .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 = 2},
+ [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 = 5},
+ [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 = 2},
+ [1447] = {.lex_state = 125, .external_lex_state = 5},
+ [1448] = {.lex_state = 125, .external_lex_state = 5},
+ [1449] = {.lex_state = 125, .external_lex_state = 2},
+ [1450] = {.lex_state = 125, .external_lex_state = 2},
+ [1451] = {.lex_state = 125, .external_lex_state = 5},
+ [1452] = {.lex_state = 125, .external_lex_state = 2},
+ [1453] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 5},
+ [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 = 5},
+ [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 = 2},
+ [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 = 2},
+ [1524] = {.lex_state = 125, .external_lex_state = 2},
+ [1525] = {.lex_state = 125, .external_lex_state = 2},
+ [1526] = {.lex_state = 125, .external_lex_state = 2},
+ [1527] = {.lex_state = 125, .external_lex_state = 2},
+ [1528] = {.lex_state = 125, .external_lex_state = 5},
+ [1529] = {.lex_state = 125, .external_lex_state = 2},
+ [1530] = {.lex_state = 125, .external_lex_state = 2},
+ [1531] = {.lex_state = 125, .external_lex_state = 2},
+ [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 = 5, .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 = 31, .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 = 5},
+ [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 = 5},
+ [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 = 125, .external_lex_state = 2},
+ [1557] = {.lex_state = 125, .external_lex_state = 2},
+ [1558] = {.lex_state = 125, .external_lex_state = 2},
+ [1559] = {.lex_state = 125, .external_lex_state = 2},
+ [1560] = {.lex_state = 125, .external_lex_state = 2},
+ [1561] = {.lex_state = 125, .external_lex_state = 5},
+ [1562] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 5},
+ [1569] = {.lex_state = 125, .external_lex_state = 2},
+ [1570] = {.lex_state = 125, .external_lex_state = 5},
+ [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 = 5, .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 = 125, .external_lex_state = 2},
+ [1591] = {.lex_state = 125, .external_lex_state = 2},
+ [1592] = {.lex_state = 125, .external_lex_state = 2},
+ [1593] = {.lex_state = 125, .external_lex_state = 2},
+ [1594] = {.lex_state = 125, .external_lex_state = 2},
+ [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 = 125, .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 = 125, .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 = 32, .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 = 2, .external_lex_state = 9},
+ [1636] = {.lex_state = 32, .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},
+ [1642] = {.lex_state = 125, .external_lex_state = 2},
+ [1643] = {.lex_state = 125, .external_lex_state = 2},
+ [1644] = {.lex_state = 125, .external_lex_state = 2},
+ [1645] = {.lex_state = 125, .external_lex_state = 2},
+ [1646] = {.lex_state = 125, .external_lex_state = 2},
+ [1647] = {.lex_state = 125, .external_lex_state = 2},
+ [1648] = {.lex_state = 125, .external_lex_state = 2},
+ [1649] = {.lex_state = 125, .external_lex_state = 2},
+ [1650] = {.lex_state = 125, .external_lex_state = 2},
+ [1651] = {.lex_state = 125, .external_lex_state = 2},
+ [1652] = {.lex_state = 125, .external_lex_state = 2},
+ [1653] = {.lex_state = 125, .external_lex_state = 2},
+ [1654] = {.lex_state = 125, .external_lex_state = 2},
+ [1655] = {.lex_state = 125, .external_lex_state = 2},
+ [1656] = {.lex_state = 125, .external_lex_state = 2},
+ [1657] = {.lex_state = 125, .external_lex_state = 2},
+ [1658] = {.lex_state = 125, .external_lex_state = 2},
+ [1659] = {.lex_state = 125, .external_lex_state = 2},
+ [1660] = {.lex_state = 125, .external_lex_state = 2},
+ [1661] = {.lex_state = 125, .external_lex_state = 2},
+ [1662] = {.lex_state = 125, .external_lex_state = 2},
+ [1663] = {.lex_state = 125, .external_lex_state = 2},
+ [1664] = {.lex_state = 125, .external_lex_state = 2},
+ [1665] = {.lex_state = 125, .external_lex_state = 2},
+ [1666] = {.lex_state = 125, .external_lex_state = 2},
+ [1667] = {.lex_state = 125, .external_lex_state = 2},
+ [1668] = {.lex_state = 125, .external_lex_state = 2},
+ [1669] = {.lex_state = 125, .external_lex_state = 2},
+ [1670] = {.lex_state = 125, .external_lex_state = 2},
+ [1671] = {.lex_state = 125, .external_lex_state = 2},
+ [1672] = {.lex_state = 125, .external_lex_state = 2},
+ [1673] = {.lex_state = 125, .external_lex_state = 2},
+ [1674] = {.lex_state = 125, .external_lex_state = 2},
+ [1675] = {.lex_state = 125, .external_lex_state = 2},
+ [1676] = {.lex_state = 125, .external_lex_state = 2},
+ [1677] = {.lex_state = 125, .external_lex_state = 2},
+ [1678] = {.lex_state = 125, .external_lex_state = 2},
+ [1679] = {.lex_state = 125, .external_lex_state = 2},
+ [1680] = {.lex_state = 125, .external_lex_state = 2},
+ [1681] = {.lex_state = 125, .external_lex_state = 2},
+ [1682] = {.lex_state = 125, .external_lex_state = 2},
+ [1683] = {.lex_state = 125, .external_lex_state = 2},
+ [1684] = {.lex_state = 125, .external_lex_state = 2},
+ [1685] = {.lex_state = 125, .external_lex_state = 2},
+ [1686] = {.lex_state = 125, .external_lex_state = 2},
+ [1687] = {.lex_state = 125, .external_lex_state = 2},
+ [1688] = {.lex_state = 2, .external_lex_state = 9},
+ [1689] = {.lex_state = 125, .external_lex_state = 2},
+ [1690] = {.lex_state = 125, .external_lex_state = 2},
+ [1691] = {.lex_state = 125, .external_lex_state = 2},
+ [1692] = {.lex_state = 2, .external_lex_state = 9},
+ [1693] = {.lex_state = 125, .external_lex_state = 2},
+ [1694] = {.lex_state = 125, .external_lex_state = 2},
+ [1695] = {.lex_state = 125, .external_lex_state = 2},
+ [1696] = {.lex_state = 125, .external_lex_state = 2},
+ [1697] = {.lex_state = 125, .external_lex_state = 2},
+ [1698] = {.lex_state = 2, .external_lex_state = 9},
+ [1699] = {.lex_state = 125, .external_lex_state = 2},
+ [1700] = {.lex_state = 125, .external_lex_state = 2},
+ [1701] = {.lex_state = 125, .external_lex_state = 2},
+ [1702] = {.lex_state = 125, .external_lex_state = 2},
+ [1703] = {.lex_state = 125, .external_lex_state = 2},
+ [1704] = {.lex_state = 125, .external_lex_state = 2},
+ [1705] = {.lex_state = 125, .external_lex_state = 2},
+ [1706] = {.lex_state = 125, .external_lex_state = 2},
+ [1707] = {.lex_state = 125, .external_lex_state = 2},
+ [1708] = {.lex_state = 125, .external_lex_state = 2},
+ [1709] = {.lex_state = 125, .external_lex_state = 2},
+ [1710] = {.lex_state = 125, .external_lex_state = 2},
+ [1711] = {.lex_state = 125, .external_lex_state = 2},
+ [1712] = {.lex_state = 125, .external_lex_state = 2},
+ [1713] = {.lex_state = 125, .external_lex_state = 2},
+ [1714] = {.lex_state = 32, .external_lex_state = 2},
+ [1715] = {.lex_state = 125, .external_lex_state = 2},
+ [1716] = {.lex_state = 125, .external_lex_state = 2},
+ [1717] = {.lex_state = 125, .external_lex_state = 2},
+ [1718] = {.lex_state = 125, .external_lex_state = 2},
+ [1719] = {.lex_state = 125, .external_lex_state = 2},
+ [1720] = {.lex_state = 125, .external_lex_state = 2},
+ [1721] = {.lex_state = 125, .external_lex_state = 2},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
@@ -8577,7 +8337,6 @@ 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),
- [sym_glimmer_opening_tag] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_DOT] = ACTIONS(1),
@@ -8662,72 +8421,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[sym_jsx_text] = ACTIONS(1),
},
[1] = {
- [sym_program] = STATE(1658),
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(14),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_program] = STATE(1626),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(18),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(14),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(18),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[ts_builtin_sym_end] = ACTIONS(7),
[sym_identifier] = ACTIONS(9),
[sym_hash_bang_line] = ACTIONS(11),
@@ -8754,126 +8512,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[2] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(18),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1700),
- [sym_object_assignment_pattern] = STATE(1309),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1700),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(12),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1661),
+ [sym_object_assignment_pattern] = STATE(1281),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1661),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1700),
- [sym_spread_element] = STATE(1314),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(747),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [sym_rest_pattern] = STATE(1309),
- [sym_method_definition] = STATE(1314),
- [sym_pair] = STATE(1314),
- [sym_pair_pattern] = STATE(1309),
- [sym__property_name] = STATE(1328),
- [sym_computed_property_name] = STATE(1328),
- [aux_sym_program_repeat1] = STATE(18),
- [aux_sym_export_statement_repeat1] = STATE(915),
- [aux_sym_object_repeat1] = STATE(1354),
- [aux_sym_object_pattern_repeat1] = STATE(1360),
- [sym_identifier] = ACTIONS(97),
- [anon_sym_export] = ACTIONS(99),
- [anon_sym_STAR] = ACTIONS(101),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1661),
+ [sym_spread_element] = STATE(1333),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(743),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [sym_rest_pattern] = STATE(1281),
+ [sym_method_definition] = STATE(1333),
+ [sym_pair] = STATE(1333),
+ [sym_pair_pattern] = STATE(1281),
+ [sym__property_name] = STATE(1290),
+ [sym_computed_property_name] = STATE(1290),
+ [aux_sym_program_repeat1] = STATE(12),
+ [aux_sym_export_statement_repeat1] = STATE(903),
+ [aux_sym_object_repeat1] = STATE(1334),
+ [aux_sym_object_pattern_repeat1] = STATE(1312),
+ [sym_identifier] = ACTIONS(95),
+ [anon_sym_export] = ACTIONS(97),
+ [anon_sym_STAR] = ACTIONS(99),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_COMMA] = ACTIONS(103),
- [anon_sym_RBRACE] = ACTIONS(105),
+ [anon_sym_COMMA] = ACTIONS(101),
+ [anon_sym_RBRACE] = ACTIONS(103),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(107),
+ [anon_sym_let] = ACTIONS(105),
[anon_sym_const] = ACTIONS(25),
[anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
@@ -8890,129 +8646,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(109),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(111),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LBRACK] = ACTIONS(107),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = ACTIONS(109),
+ [anon_sym_function] = ACTIONS(69),
+ [anon_sym_new] = ACTIONS(71),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [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(83),
- [sym_number] = ACTIONS(115),
- [sym_private_property_identifier] = ACTIONS(117),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(119),
- [aux_sym_method_definition_token1] = ACTIONS(121),
- [anon_sym_get] = ACTIONS(123),
- [anon_sym_set] = ACTIONS(123),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(113),
+ [sym_private_property_identifier] = ACTIONS(115),
+ [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),
+ [anon_sym_static] = ACTIONS(117),
+ [aux_sym_method_definition_token1] = ACTIONS(119),
+ [anon_sym_get] = ACTIONS(121),
+ [anon_sym_set] = ACTIONS(121),
[sym_html_comment] = ACTIONS(5),
},
[3] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(16),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1700),
- [sym_object_assignment_pattern] = STATE(1309),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1700),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(14),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1661),
+ [sym_object_assignment_pattern] = STATE(1281),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1661),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1700),
- [sym_spread_element] = STATE(1314),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(747),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [sym_rest_pattern] = STATE(1309),
- [sym_method_definition] = STATE(1314),
- [sym_pair] = STATE(1314),
- [sym_pair_pattern] = STATE(1309),
- [sym__property_name] = STATE(1328),
- [sym_computed_property_name] = STATE(1328),
- [aux_sym_program_repeat1] = STATE(16),
- [aux_sym_export_statement_repeat1] = STATE(915),
- [aux_sym_object_repeat1] = STATE(1354),
- [aux_sym_object_pattern_repeat1] = STATE(1360),
- [sym_identifier] = ACTIONS(97),
- [anon_sym_export] = ACTIONS(99),
- [anon_sym_STAR] = ACTIONS(101),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1661),
+ [sym_spread_element] = STATE(1289),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(743),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [sym_rest_pattern] = STATE(1281),
+ [sym_method_definition] = STATE(1289),
+ [sym_pair] = STATE(1289),
+ [sym_pair_pattern] = STATE(1281),
+ [sym__property_name] = STATE(1290),
+ [sym_computed_property_name] = STATE(1290),
+ [aux_sym_program_repeat1] = STATE(14),
+ [aux_sym_export_statement_repeat1] = STATE(903),
+ [aux_sym_object_repeat1] = STATE(1309),
+ [aux_sym_object_pattern_repeat1] = STATE(1312),
+ [sym_identifier] = ACTIONS(123),
+ [anon_sym_export] = ACTIONS(125),
+ [anon_sym_STAR] = ACTIONS(99),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_COMMA] = ACTIONS(103),
- [anon_sym_RBRACE] = ACTIONS(125),
+ [anon_sym_COMMA] = ACTIONS(101),
+ [anon_sym_RBRACE] = ACTIONS(127),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(107),
+ [anon_sym_let] = ACTIONS(129),
[anon_sym_const] = ACTIONS(25),
[anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
@@ -9029,129 +8783,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(109),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(111),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LBRACK] = ACTIONS(107),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = ACTIONS(131),
+ [anon_sym_function] = ACTIONS(69),
+ [anon_sym_new] = ACTIONS(71),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [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(83),
- [sym_number] = ACTIONS(115),
- [sym_private_property_identifier] = ACTIONS(117),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(119),
- [aux_sym_method_definition_token1] = ACTIONS(121),
- [anon_sym_get] = ACTIONS(123),
- [anon_sym_set] = ACTIONS(123),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(113),
+ [sym_private_property_identifier] = ACTIONS(115),
+ [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),
+ [anon_sym_static] = ACTIONS(133),
+ [aux_sym_method_definition_token1] = ACTIONS(119),
+ [anon_sym_get] = ACTIONS(135),
+ [anon_sym_set] = ACTIONS(135),
[sym_html_comment] = ACTIONS(5),
},
[4] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(18),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1700),
- [sym_object_assignment_pattern] = STATE(1309),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1700),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(14),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1661),
+ [sym_object_assignment_pattern] = STATE(1281),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1661),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1700),
- [sym_spread_element] = STATE(1314),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(747),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [sym_rest_pattern] = STATE(1309),
- [sym_method_definition] = STATE(1314),
- [sym_pair] = STATE(1314),
- [sym_pair_pattern] = STATE(1309),
- [sym__property_name] = STATE(1328),
- [sym_computed_property_name] = STATE(1328),
- [aux_sym_program_repeat1] = STATE(18),
- [aux_sym_export_statement_repeat1] = STATE(915),
- [aux_sym_object_repeat1] = STATE(1354),
- [aux_sym_object_pattern_repeat1] = STATE(1360),
- [sym_identifier] = ACTIONS(97),
- [anon_sym_export] = ACTIONS(99),
- [anon_sym_STAR] = ACTIONS(101),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1661),
+ [sym_spread_element] = STATE(1289),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(743),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [sym_rest_pattern] = STATE(1281),
+ [sym_method_definition] = STATE(1289),
+ [sym_pair] = STATE(1289),
+ [sym_pair_pattern] = STATE(1281),
+ [sym__property_name] = STATE(1290),
+ [sym_computed_property_name] = STATE(1290),
+ [aux_sym_program_repeat1] = STATE(14),
+ [aux_sym_export_statement_repeat1] = STATE(903),
+ [aux_sym_object_repeat1] = STATE(1309),
+ [aux_sym_object_pattern_repeat1] = STATE(1312),
+ [sym_identifier] = ACTIONS(123),
+ [anon_sym_export] = ACTIONS(125),
+ [anon_sym_STAR] = ACTIONS(99),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_COMMA] = ACTIONS(103),
- [anon_sym_RBRACE] = ACTIONS(127),
+ [anon_sym_COMMA] = ACTIONS(101),
+ [anon_sym_RBRACE] = ACTIONS(137),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(107),
+ [anon_sym_let] = ACTIONS(129),
[anon_sym_const] = ACTIONS(25),
[anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
@@ -9168,129 +8920,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(109),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(111),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LBRACK] = ACTIONS(107),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = ACTIONS(131),
+ [anon_sym_function] = ACTIONS(69),
+ [anon_sym_new] = ACTIONS(71),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [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(83),
- [sym_number] = ACTIONS(115),
- [sym_private_property_identifier] = ACTIONS(117),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(119),
- [aux_sym_method_definition_token1] = ACTIONS(121),
- [anon_sym_get] = ACTIONS(123),
- [anon_sym_set] = ACTIONS(123),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(113),
+ [sym_private_property_identifier] = ACTIONS(115),
+ [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),
+ [anon_sym_static] = ACTIONS(133),
+ [aux_sym_method_definition_token1] = ACTIONS(119),
+ [anon_sym_get] = ACTIONS(135),
+ [anon_sym_set] = ACTIONS(135),
[sym_html_comment] = ACTIONS(5),
},
[5] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(19),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1700),
- [sym_object_assignment_pattern] = STATE(1309),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1700),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(16),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1661),
+ [sym_object_assignment_pattern] = STATE(1281),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1661),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1700),
- [sym_spread_element] = STATE(1368),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(747),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [sym_rest_pattern] = STATE(1309),
- [sym_method_definition] = STATE(1368),
- [sym_pair] = STATE(1368),
- [sym_pair_pattern] = STATE(1309),
- [sym__property_name] = STATE(1328),
- [sym_computed_property_name] = STATE(1328),
- [aux_sym_program_repeat1] = STATE(19),
- [aux_sym_export_statement_repeat1] = STATE(915),
- [aux_sym_object_repeat1] = STATE(1369),
- [aux_sym_object_pattern_repeat1] = STATE(1360),
- [sym_identifier] = ACTIONS(129),
- [anon_sym_export] = ACTIONS(131),
- [anon_sym_STAR] = ACTIONS(101),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1661),
+ [sym_spread_element] = STATE(1289),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(743),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [sym_rest_pattern] = STATE(1281),
+ [sym_method_definition] = STATE(1289),
+ [sym_pair] = STATE(1289),
+ [sym_pair_pattern] = STATE(1281),
+ [sym__property_name] = STATE(1290),
+ [sym_computed_property_name] = STATE(1290),
+ [aux_sym_program_repeat1] = STATE(16),
+ [aux_sym_export_statement_repeat1] = STATE(903),
+ [aux_sym_object_repeat1] = STATE(1309),
+ [aux_sym_object_pattern_repeat1] = STATE(1312),
+ [sym_identifier] = ACTIONS(123),
+ [anon_sym_export] = ACTIONS(125),
+ [anon_sym_STAR] = ACTIONS(99),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_COMMA] = ACTIONS(103),
- [anon_sym_RBRACE] = ACTIONS(133),
+ [anon_sym_COMMA] = ACTIONS(101),
+ [anon_sym_RBRACE] = ACTIONS(139),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(135),
+ [anon_sym_let] = ACTIONS(129),
[anon_sym_const] = ACTIONS(25),
[anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
@@ -9307,129 +9057,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(109),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(137),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LBRACK] = ACTIONS(107),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = ACTIONS(131),
+ [anon_sym_function] = ACTIONS(69),
+ [anon_sym_new] = ACTIONS(71),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [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(83),
- [sym_number] = ACTIONS(115),
- [sym_private_property_identifier] = ACTIONS(117),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(139),
- [aux_sym_method_definition_token1] = ACTIONS(121),
- [anon_sym_get] = ACTIONS(141),
- [anon_sym_set] = ACTIONS(141),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(113),
+ [sym_private_property_identifier] = ACTIONS(115),
+ [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),
+ [anon_sym_static] = ACTIONS(133),
+ [aux_sym_method_definition_token1] = ACTIONS(119),
+ [anon_sym_get] = ACTIONS(135),
+ [anon_sym_set] = ACTIONS(135),
[sym_html_comment] = ACTIONS(5),
},
[6] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(19),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1700),
- [sym_object_assignment_pattern] = STATE(1309),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1700),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(12),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1661),
+ [sym_object_assignment_pattern] = STATE(1281),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1661),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1700),
- [sym_spread_element] = STATE(1368),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(747),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [sym_rest_pattern] = STATE(1309),
- [sym_method_definition] = STATE(1368),
- [sym_pair] = STATE(1368),
- [sym_pair_pattern] = STATE(1309),
- [sym__property_name] = STATE(1328),
- [sym_computed_property_name] = STATE(1328),
- [aux_sym_program_repeat1] = STATE(19),
- [aux_sym_export_statement_repeat1] = STATE(915),
- [aux_sym_object_repeat1] = STATE(1369),
- [aux_sym_object_pattern_repeat1] = STATE(1360),
- [sym_identifier] = ACTIONS(143),
- [anon_sym_export] = ACTIONS(145),
- [anon_sym_STAR] = ACTIONS(101),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1661),
+ [sym_spread_element] = STATE(1333),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(743),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [sym_rest_pattern] = STATE(1281),
+ [sym_method_definition] = STATE(1333),
+ [sym_pair] = STATE(1333),
+ [sym_pair_pattern] = STATE(1281),
+ [sym__property_name] = STATE(1290),
+ [sym_computed_property_name] = STATE(1290),
+ [aux_sym_program_repeat1] = STATE(12),
+ [aux_sym_export_statement_repeat1] = STATE(903),
+ [aux_sym_object_repeat1] = STATE(1334),
+ [aux_sym_object_pattern_repeat1] = STATE(1312),
+ [sym_identifier] = ACTIONS(141),
+ [anon_sym_export] = ACTIONS(143),
+ [anon_sym_STAR] = ACTIONS(99),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_COMMA] = ACTIONS(103),
- [anon_sym_RBRACE] = ACTIONS(133),
+ [anon_sym_COMMA] = ACTIONS(101),
+ [anon_sym_RBRACE] = ACTIONS(103),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(147),
+ [anon_sym_let] = ACTIONS(145),
[anon_sym_const] = ACTIONS(25),
[anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
@@ -9446,242 +9194,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(109),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(149),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LBRACK] = ACTIONS(107),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = ACTIONS(147),
+ [anon_sym_function] = ACTIONS(69),
+ [anon_sym_new] = ACTIONS(71),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [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(83),
- [sym_number] = ACTIONS(115),
- [sym_private_property_identifier] = ACTIONS(117),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(151),
- [aux_sym_method_definition_token1] = ACTIONS(121),
- [anon_sym_get] = ACTIONS(153),
- [anon_sym_set] = ACTIONS(153),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(113),
+ [sym_private_property_identifier] = ACTIONS(115),
+ [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),
+ [anon_sym_static] = ACTIONS(149),
+ [aux_sym_method_definition_token1] = ACTIONS(119),
+ [anon_sym_get] = ACTIONS(151),
+ [anon_sym_set] = ACTIONS(151),
[sym_html_comment] = ACTIONS(5),
},
[7] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [ts_builtin_sym_end] = ACTIONS(155),
- [sym_identifier] = ACTIONS(157),
- [anon_sym_export] = ACTIONS(160),
- [anon_sym_default] = ACTIONS(163),
- [anon_sym_LBRACE] = ACTIONS(165),
- [anon_sym_RBRACE] = ACTIONS(155),
- [anon_sym_import] = ACTIONS(168),
- [anon_sym_with] = ACTIONS(171),
- [anon_sym_var] = ACTIONS(174),
- [anon_sym_let] = ACTIONS(177),
- [anon_sym_const] = ACTIONS(180),
- [anon_sym_if] = ACTIONS(183),
- [anon_sym_switch] = ACTIONS(186),
- [anon_sym_for] = ACTIONS(189),
- [anon_sym_LPAREN] = ACTIONS(192),
- [anon_sym_SEMI] = ACTIONS(195),
- [anon_sym_await] = ACTIONS(198),
- [anon_sym_while] = ACTIONS(201),
- [anon_sym_do] = ACTIONS(204),
- [anon_sym_try] = ACTIONS(207),
- [anon_sym_break] = ACTIONS(210),
- [anon_sym_continue] = ACTIONS(213),
- [anon_sym_debugger] = ACTIONS(216),
- [anon_sym_return] = ACTIONS(219),
- [anon_sym_throw] = ACTIONS(222),
- [anon_sym_case] = ACTIONS(163),
- [anon_sym_yield] = ACTIONS(225),
- [anon_sym_LBRACK] = ACTIONS(228),
- [sym_glimmer_opening_tag] = ACTIONS(231),
- [anon_sym_LT] = ACTIONS(234),
- [anon_sym_DQUOTE] = ACTIONS(237),
- [anon_sym_SQUOTE] = ACTIONS(240),
- [anon_sym_class] = ACTIONS(243),
- [anon_sym_async] = ACTIONS(246),
- [anon_sym_function] = ACTIONS(249),
- [anon_sym_new] = ACTIONS(252),
- [anon_sym_PLUS] = ACTIONS(255),
- [anon_sym_DASH] = ACTIONS(255),
- [anon_sym_SLASH] = ACTIONS(258),
- [anon_sym_BANG] = ACTIONS(261),
- [anon_sym_TILDE] = ACTIONS(261),
- [anon_sym_typeof] = ACTIONS(255),
- [anon_sym_void] = ACTIONS(255),
- [anon_sym_delete] = ACTIONS(255),
- [anon_sym_PLUS_PLUS] = ACTIONS(264),
- [anon_sym_DASH_DASH] = ACTIONS(264),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [ts_builtin_sym_end] = ACTIONS(153),
+ [sym_identifier] = ACTIONS(155),
+ [anon_sym_export] = ACTIONS(158),
+ [anon_sym_default] = ACTIONS(161),
+ [anon_sym_LBRACE] = ACTIONS(163),
+ [anon_sym_RBRACE] = ACTIONS(153),
+ [anon_sym_import] = ACTIONS(166),
+ [anon_sym_with] = ACTIONS(169),
+ [anon_sym_var] = ACTIONS(172),
+ [anon_sym_let] = ACTIONS(175),
+ [anon_sym_const] = ACTIONS(178),
+ [anon_sym_if] = ACTIONS(181),
+ [anon_sym_switch] = ACTIONS(184),
+ [anon_sym_for] = ACTIONS(187),
+ [anon_sym_LPAREN] = ACTIONS(190),
+ [anon_sym_SEMI] = ACTIONS(193),
+ [anon_sym_await] = ACTIONS(196),
+ [anon_sym_while] = ACTIONS(199),
+ [anon_sym_do] = ACTIONS(202),
+ [anon_sym_try] = ACTIONS(205),
+ [anon_sym_break] = ACTIONS(208),
+ [anon_sym_continue] = ACTIONS(211),
+ [anon_sym_debugger] = ACTIONS(214),
+ [anon_sym_return] = ACTIONS(217),
+ [anon_sym_throw] = ACTIONS(220),
+ [anon_sym_case] = ACTIONS(161),
+ [anon_sym_yield] = ACTIONS(223),
+ [anon_sym_LBRACK] = ACTIONS(226),
+ [anon_sym_LT] = ACTIONS(229),
+ [anon_sym_DQUOTE] = ACTIONS(232),
+ [anon_sym_SQUOTE] = ACTIONS(235),
+ [anon_sym_class] = ACTIONS(238),
+ [anon_sym_async] = ACTIONS(241),
+ [anon_sym_function] = ACTIONS(244),
+ [anon_sym_new] = ACTIONS(247),
+ [anon_sym_PLUS] = ACTIONS(250),
+ [anon_sym_DASH] = ACTIONS(250),
+ [anon_sym_SLASH] = ACTIONS(253),
+ [anon_sym_BANG] = ACTIONS(256),
+ [anon_sym_TILDE] = ACTIONS(256),
+ [anon_sym_typeof] = ACTIONS(250),
+ [anon_sym_void] = ACTIONS(250),
+ [anon_sym_delete] = ACTIONS(250),
+ [anon_sym_PLUS_PLUS] = ACTIONS(259),
+ [anon_sym_DASH_DASH] = ACTIONS(259),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(267),
- [sym_number] = ACTIONS(270),
- [sym_private_property_identifier] = ACTIONS(273),
- [sym_this] = ACTIONS(276),
- [sym_super] = ACTIONS(276),
- [sym_true] = ACTIONS(276),
- [sym_false] = ACTIONS(276),
- [sym_null] = ACTIONS(276),
- [sym_undefined] = ACTIONS(279),
- [anon_sym_AT] = ACTIONS(282),
- [anon_sym_static] = ACTIONS(285),
- [anon_sym_get] = ACTIONS(285),
- [anon_sym_set] = ACTIONS(285),
+ [anon_sym_BQUOTE] = ACTIONS(262),
+ [sym_number] = ACTIONS(265),
+ [sym_private_property_identifier] = ACTIONS(268),
+ [sym_this] = ACTIONS(271),
+ [sym_super] = ACTIONS(271),
+ [sym_true] = ACTIONS(271),
+ [sym_false] = ACTIONS(271),
+ [sym_null] = ACTIONS(271),
+ [sym_undefined] = ACTIONS(274),
+ [anon_sym_AT] = ACTIONS(277),
+ [anon_sym_static] = ACTIONS(280),
+ [anon_sym_get] = ACTIONS(280),
+ [anon_sym_set] = ACTIONS(280),
[sym_html_comment] = ACTIONS(5),
},
[8] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(11),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(11),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(288),
+ [anon_sym_default] = ACTIONS(283),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(290),
+ [anon_sym_RBRACE] = ACTIONS(285),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -9701,114 +9445,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_debugger] = ACTIONS(49),
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
- [anon_sym_case] = ACTIONS(288),
+ [anon_sym_case] = ACTIONS(283),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[9] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(292),
+ [anon_sym_default] = ACTIONS(287),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(294),
+ [anon_sym_RBRACE] = ACTIONS(289),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -9828,114 +9570,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_debugger] = ACTIONS(49),
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
- [anon_sym_case] = ACTIONS(292),
+ [anon_sym_case] = ACTIONS(287),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[10] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(296),
+ [anon_sym_default] = ACTIONS(291),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(298),
+ [anon_sym_RBRACE] = ACTIONS(293),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -9955,114 +9695,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_debugger] = ACTIONS(49),
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
- [anon_sym_case] = ACTIONS(296),
+ [anon_sym_case] = ACTIONS(291),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[11] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(300),
+ [anon_sym_default] = ACTIONS(295),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(302),
+ [anon_sym_RBRACE] = ACTIONS(297),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10082,113 +9820,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_debugger] = ACTIONS(49),
[anon_sym_return] = ACTIONS(51),
[anon_sym_throw] = ACTIONS(53),
- [anon_sym_case] = ACTIONS(300),
+ [anon_sym_case] = ACTIONS(295),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[12] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(15),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(7),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(15),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [ts_builtin_sym_end] = ACTIONS(304),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(7),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
+ [anon_sym_RBRACE] = ACTIONS(299),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10210,110 +9946,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[13] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(18),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(20),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(18),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(20),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [ts_builtin_sym_end] = ACTIONS(301),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(306),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10335,110 +10069,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[14] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [ts_builtin_sym_end] = ACTIONS(304),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
+ [anon_sym_RBRACE] = ACTIONS(303),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10460,110 +10192,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[15] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(14),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [ts_builtin_sym_end] = ACTIONS(308),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(14),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
+ [anon_sym_RBRACE] = ACTIONS(305),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10585,110 +10315,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[16] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(310),
+ [anon_sym_RBRACE] = ACTIONS(307),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10710,110 +10438,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[17] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(16),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(16),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(312),
+ [anon_sym_RBRACE] = ACTIONS(309),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10835,110 +10561,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[18] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [ts_builtin_sym_end] = ACTIONS(301),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(314),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -10960,110 +10684,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[19] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(12),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(12),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(316),
+ [anon_sym_RBRACE] = ACTIONS(311),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -11085,110 +10807,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[20] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(19),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(7),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(19),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(7),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [ts_builtin_sym_end] = ACTIONS(313),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(318),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -11210,110 +10930,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[21] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(320),
+ [anon_sym_RBRACE] = ACTIONS(315),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -11335,110 +11053,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[22] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
[sym_statement] = STATE(21),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
[aux_sym_program_repeat1] = STATE(21),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(322),
+ [anon_sym_RBRACE] = ACTIONS(317),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -11460,110 +11176,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[23] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(24),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(24),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(324),
+ [anon_sym_RBRACE] = ACTIONS(319),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -11585,110 +11299,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[24] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(23),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(7),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(23),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_program_repeat1] = STATE(7),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(326),
+ [anon_sym_RBRACE] = ACTIONS(321),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -11710,122 +11422,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[25] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(26),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(384),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(26),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(328),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(19),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(23),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(27),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(31),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(39),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -11835,110 +11543,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[26] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(7),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(377),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_program_repeat1] = STATE(7),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_RBRACE] = ACTIONS(330),
[anon_sym_import] = ACTIONS(17),
[anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
@@ -11960,120 +11664,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[27] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(417),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(416),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [sym_identifier] = ACTIONS(9),
+ [anon_sym_export] = ACTIONS(13),
+ [anon_sym_LBRACE] = ACTIONS(15),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(23),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(31),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(39),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -12083,105 +11785,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[28] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(394),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(361),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -12206,120 +11906,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[29] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(383),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(422),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [sym_identifier] = ACTIONS(9),
+ [anon_sym_export] = ACTIONS(13),
+ [anon_sym_LBRACE] = ACTIONS(15),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(23),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(31),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(39),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -12329,120 +12027,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[30] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(360),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(414),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_LBRACE] = ACTIONS(15),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(19),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(23),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(27),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(31),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(39),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -12452,120 +12148,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[31] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(400),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(414),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [sym_identifier] = ACTIONS(9),
+ [anon_sym_export] = ACTIONS(13),
+ [anon_sym_LBRACE] = ACTIONS(15),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(23),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(31),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(39),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -12575,120 +12269,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[32] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(1332),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(1323),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -12698,120 +12390,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[33] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(415),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(416),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -12821,120 +12511,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[34] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(417),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(361),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_LBRACE] = ACTIONS(15),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(19),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(23),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(27),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(31),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(39),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -12944,120 +12632,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[35] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(1736),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(384),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [sym_identifier] = ACTIONS(9),
+ [anon_sym_export] = ACTIONS(13),
+ [anon_sym_LBRACE] = ACTIONS(15),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(23),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(31),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(39),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13067,120 +12753,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[36] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(405),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(420),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13190,120 +12874,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[37] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(360),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(374),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13313,120 +12995,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[38] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(376),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(422),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13436,120 +13116,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[39] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(384),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(362),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13559,120 +13237,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[40] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(385),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(374),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
+ [sym_identifier] = ACTIONS(9),
+ [anon_sym_export] = ACTIONS(13),
+ [anon_sym_LBRACE] = ACTIONS(15),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(19),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(23),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(27),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(31),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(39),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13682,120 +13358,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[41] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(393),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(363),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_LBRACE] = ACTIONS(15),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(19),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(23),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(27),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(31),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(39),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13805,120 +13479,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[42] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(391),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(366),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -13928,120 +13600,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[43] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(392),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(370),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -14051,120 +13721,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[44] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(393),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(372),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -14174,120 +13842,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[45] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(394),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(377),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -14297,105 +13963,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[46] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(376),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(362),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -14420,120 +14084,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[47] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(405),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(1653),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_LBRACE] = ACTIONS(15),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(19),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(23),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(27),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(31),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(39),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -14543,105 +14205,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[48] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(400),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(425),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -14666,105 +14326,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[49] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(384),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(363),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -14789,105 +14447,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[50] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(385),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(345),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -14912,105 +14568,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[51] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(351),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(366),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -15035,105 +14689,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[52] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(388),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(420),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -15158,105 +14810,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[53] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(383),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(370),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -15281,105 +14931,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[54] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(391),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(372),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1166),
[sym_identifier] = ACTIONS(9),
[anon_sym_export] = ACTIONS(13),
[anon_sym_LBRACE] = ACTIONS(15),
@@ -15404,120 +15052,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = 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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(93),
+ [anon_sym_get] = ACTIONS(93),
+ [anon_sym_set] = ACTIONS(93),
[sym_html_comment] = ACTIONS(5),
},
[55] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(392),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_export_statement] = STATE(385),
+ [sym_declaration] = STATE(385),
+ [sym_import] = STATE(1232),
+ [sym_import_statement] = STATE(385),
+ [sym_statement] = STATE(425),
+ [sym_expression_statement] = STATE(385),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_statement_block] = STATE(385),
+ [sym_if_statement] = STATE(385),
+ [sym_switch_statement] = STATE(385),
+ [sym_for_statement] = STATE(385),
+ [sym_for_in_statement] = STATE(385),
+ [sym_while_statement] = STATE(385),
+ [sym_do_statement] = STATE(385),
+ [sym_try_statement] = STATE(385),
+ [sym_with_statement] = STATE(385),
+ [sym_break_statement] = STATE(385),
+ [sym_continue_statement] = STATE(385),
+ [sym_debugger_statement] = STATE(385),
+ [sym_return_statement] = STATE(385),
+ [sym_throw_statement] = STATE(385),
+ [sym_empty_statement] = STATE(385),
+ [sym_labeled_statement] = STATE(385),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(745),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_LBRACE] = ACTIONS(15),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1435),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1142),
+ [sym_identifier] = ACTIONS(323),
+ [anon_sym_export] = ACTIONS(325),
+ [anon_sym_LBRACE] = ACTIONS(327),
[anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(19),
+ [anon_sym_with] = ACTIONS(329),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(23),
+ [anon_sym_let] = ACTIONS(331),
[anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(27),
+ [anon_sym_if] = ACTIONS(333),
[anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(31),
+ [anon_sym_for] = ACTIONS(335),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_SEMI] = ACTIONS(35),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(39),
+ [anon_sym_while] = ACTIONS(337),
[anon_sym_do] = ACTIONS(41),
[anon_sym_try] = ACTIONS(43),
[anon_sym_break] = ACTIONS(45),
@@ -15527,22597 +15173,22197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[anon_sym_throw] = ACTIONS(53),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(341),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [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),
+ [anon_sym_static] = ACTIONS(345),
+ [anon_sym_get] = ACTIONS(345),
+ [anon_sym_set] = ACTIONS(345),
[sym_html_comment] = ACTIONS(5),
},
[56] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(415),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1161),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_LBRACE] = ACTIONS(15),
- [anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(19),
- [anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(23),
- [anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(27),
- [anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(31),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_SEMI] = ACTIONS(35),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(39),
- [anon_sym_do] = ACTIONS(41),
- [anon_sym_try] = ACTIONS(43),
- [anon_sym_break] = ACTIONS(45),
- [anon_sym_continue] = ACTIONS(47),
- [anon_sym_debugger] = ACTIONS(49),
- [anon_sym_return] = ACTIONS(51),
- [anon_sym_throw] = ACTIONS(53),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(69),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(581),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_STAR] = ACTIONS(351),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_COMMA] = ACTIONS(355),
+ [anon_sym_RBRACE] = ACTIONS(355),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_SEMI] = ACTIONS(355),
+ [anon_sym_RPAREN] = ACTIONS(355),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_in] = ACTIONS(363),
+ [anon_sym_COLON] = ACTIONS(355),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_RBRACK] = ACTIONS(355),
+ [anon_sym_LT] = ACTIONS(369),
+ [anon_sym_GT] = ACTIONS(363),
+ [anon_sym_DOT] = ACTIONS(363),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [sym_optional_chain] = ACTIONS(355),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_AMP_AMP] = ACTIONS(355),
+ [anon_sym_PIPE_PIPE] = ACTIONS(355),
+ [anon_sym_GT_GT] = ACTIONS(363),
+ [anon_sym_GT_GT_GT] = ACTIONS(355),
+ [anon_sym_LT_LT] = ACTIONS(355),
+ [anon_sym_AMP] = ACTIONS(363),
+ [anon_sym_CARET] = ACTIONS(355),
+ [anon_sym_PIPE] = ACTIONS(363),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_PERCENT] = ACTIONS(355),
+ [anon_sym_STAR_STAR] = ACTIONS(355),
+ [anon_sym_LT_EQ] = ACTIONS(355),
+ [anon_sym_EQ_EQ] = ACTIONS(363),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(355),
+ [anon_sym_BANG_EQ] = ACTIONS(363),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(355),
+ [anon_sym_GT_EQ] = ACTIONS(355),
+ [anon_sym_QMARK_QMARK] = ACTIONS(355),
+ [anon_sym_instanceof] = ACTIONS(363),
+ [anon_sym_BANG] = ACTIONS(383),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(95),
- [anon_sym_get] = ACTIONS(95),
- [anon_sym_set] = ACTIONS(95),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
+ [sym__ternary_qmark] = ACTIONS(355),
[sym_html_comment] = ACTIONS(5),
},
[57] = {
- [sym_export_statement] = STATE(406),
- [sym_declaration] = STATE(406),
- [sym_import] = STATE(1267),
- [sym_import_statement] = STATE(406),
- [sym_statement] = STATE(388),
- [sym_expression_statement] = STATE(406),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_statement_block] = STATE(406),
- [sym_if_statement] = STATE(406),
- [sym_switch_statement] = STATE(406),
- [sym_for_statement] = STATE(406),
- [sym_for_in_statement] = STATE(406),
- [sym_while_statement] = STATE(406),
- [sym_do_statement] = STATE(406),
- [sym_try_statement] = STATE(406),
- [sym_with_statement] = STATE(406),
- [sym_break_statement] = STATE(406),
- [sym_continue_statement] = STATE(406),
- [sym_debugger_statement] = STATE(406),
- [sym_return_statement] = STATE(406),
- [sym_throw_statement] = STATE(406),
- [sym_empty_statement] = STATE(406),
- [sym_labeled_statement] = STATE(406),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(748),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(732),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1582),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1153),
- [sym_identifier] = ACTIONS(332),
- [anon_sym_export] = ACTIONS(334),
- [anon_sym_LBRACE] = ACTIONS(336),
- [anon_sym_import] = ACTIONS(17),
- [anon_sym_with] = ACTIONS(338),
- [anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(340),
- [anon_sym_const] = ACTIONS(25),
- [anon_sym_if] = ACTIONS(342),
- [anon_sym_switch] = ACTIONS(29),
- [anon_sym_for] = ACTIONS(344),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_STAR] = ACTIONS(405),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_COMMA] = ACTIONS(355),
+ [anon_sym_RBRACE] = ACTIONS(355),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_SEMI] = ACTIONS(35),
+ [anon_sym_SEMI] = ACTIONS(355),
[anon_sym_await] = ACTIONS(37),
- [anon_sym_while] = ACTIONS(346),
- [anon_sym_do] = ACTIONS(41),
- [anon_sym_try] = ACTIONS(43),
- [anon_sym_break] = ACTIONS(45),
- [anon_sym_continue] = ACTIONS(47),
- [anon_sym_debugger] = ACTIONS(49),
- [anon_sym_return] = ACTIONS(51),
- [anon_sym_throw] = ACTIONS(53),
+ [anon_sym_in] = ACTIONS(363),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(350),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(411),
+ [anon_sym_GT] = ACTIONS(363),
+ [anon_sym_DOT] = ACTIONS(363),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [sym_optional_chain] = ACTIONS(355),
+ [anon_sym_new] = ACTIONS(71),
+ [anon_sym_AMP_AMP] = ACTIONS(355),
+ [anon_sym_PIPE_PIPE] = ACTIONS(355),
+ [anon_sym_GT_GT] = ACTIONS(363),
+ [anon_sym_GT_GT_GT] = ACTIONS(355),
+ [anon_sym_LT_LT] = ACTIONS(355),
+ [anon_sym_AMP] = ACTIONS(363),
+ [anon_sym_CARET] = ACTIONS(355),
+ [anon_sym_PIPE] = ACTIONS(363),
+ [anon_sym_PLUS] = ACTIONS(73),
+ [anon_sym_DASH] = ACTIONS(73),
+ [anon_sym_SLASH] = ACTIONS(75),
+ [anon_sym_PERCENT] = ACTIONS(355),
+ [anon_sym_STAR_STAR] = ACTIONS(355),
+ [anon_sym_LT_EQ] = ACTIONS(355),
+ [anon_sym_EQ_EQ] = ACTIONS(363),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(355),
+ [anon_sym_BANG_EQ] = ACTIONS(363),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(355),
+ [anon_sym_GT_EQ] = ACTIONS(355),
+ [anon_sym_QMARK_QMARK] = ACTIONS(355),
+ [anon_sym_instanceof] = ACTIONS(363),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(354),
- [anon_sym_get] = ACTIONS(354),
- [anon_sym_set] = ACTIONS(354),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
+ [sym__automatic_semicolon] = ACTIONS(355),
+ [sym__ternary_qmark] = ACTIONS(355),
[sym_html_comment] = ACTIONS(5),
},
[58] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(579),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_STAR] = ACTIONS(360),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_COMMA] = ACTIONS(364),
- [anon_sym_RBRACE] = ACTIONS(364),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_SEMI] = ACTIONS(364),
- [anon_sym_RPAREN] = ACTIONS(364),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_in] = ACTIONS(372),
- [anon_sym_COLON] = ACTIONS(364),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [anon_sym_RBRACK] = ACTIONS(364),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_GT] = ACTIONS(372),
- [anon_sym_DOT] = ACTIONS(372),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [sym_optional_chain] = ACTIONS(364),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_AMP_AMP] = ACTIONS(364),
- [anon_sym_PIPE_PIPE] = ACTIONS(364),
- [anon_sym_GT_GT] = ACTIONS(372),
- [anon_sym_GT_GT_GT] = ACTIONS(364),
- [anon_sym_LT_LT] = ACTIONS(364),
- [anon_sym_AMP] = ACTIONS(372),
- [anon_sym_CARET] = ACTIONS(364),
- [anon_sym_PIPE] = ACTIONS(372),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_PERCENT] = ACTIONS(364),
- [anon_sym_STAR_STAR] = ACTIONS(364),
- [anon_sym_LT_EQ] = ACTIONS(364),
- [anon_sym_EQ_EQ] = ACTIONS(372),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(364),
- [anon_sym_BANG_EQ] = ACTIONS(372),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(364),
- [anon_sym_GT_EQ] = ACTIONS(364),
- [anon_sym_QMARK_QMARK] = ACTIONS(364),
- [anon_sym_instanceof] = ACTIONS(372),
- [anon_sym_BANG] = ACTIONS(394),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(727),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_STAR] = ACTIONS(423),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_COMMA] = ACTIONS(355),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_SEMI] = ACTIONS(355),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_in] = ACTIONS(363),
+ [anon_sym_of] = ACTIONS(363),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(411),
+ [anon_sym_GT] = ACTIONS(363),
+ [anon_sym_DOT] = ACTIONS(363),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [sym_optional_chain] = ACTIONS(355),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_AMP_AMP] = ACTIONS(355),
+ [anon_sym_PIPE_PIPE] = ACTIONS(355),
+ [anon_sym_GT_GT] = ACTIONS(363),
+ [anon_sym_GT_GT_GT] = ACTIONS(355),
+ [anon_sym_LT_LT] = ACTIONS(355),
+ [anon_sym_AMP] = ACTIONS(363),
+ [anon_sym_CARET] = ACTIONS(355),
+ [anon_sym_PIPE] = ACTIONS(363),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_PERCENT] = ACTIONS(355),
+ [anon_sym_STAR_STAR] = ACTIONS(355),
+ [anon_sym_LT_EQ] = ACTIONS(355),
+ [anon_sym_EQ_EQ] = ACTIONS(363),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(355),
+ [anon_sym_BANG_EQ] = ACTIONS(363),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(355),
+ [anon_sym_GT_EQ] = ACTIONS(355),
+ [anon_sym_QMARK_QMARK] = ACTIONS(355),
+ [anon_sym_instanceof] = ACTIONS(363),
+ [anon_sym_BANG] = ACTIONS(433),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
- [sym__ternary_qmark] = ACTIONS(364),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
+ [sym__automatic_semicolon] = ACTIONS(355),
+ [sym__ternary_qmark] = ACTIONS(355),
[sym_html_comment] = ACTIONS(5),
},
[59] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(743),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_STAR] = ACTIONS(416),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_COMMA] = ACTIONS(364),
- [anon_sym_RBRACE] = ACTIONS(364),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_SEMI] = ACTIONS(364),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_in] = ACTIONS(372),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_GT] = ACTIONS(372),
- [anon_sym_DOT] = ACTIONS(372),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [sym_optional_chain] = ACTIONS(364),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_AMP_AMP] = ACTIONS(364),
- [anon_sym_PIPE_PIPE] = ACTIONS(364),
- [anon_sym_GT_GT] = ACTIONS(372),
- [anon_sym_GT_GT_GT] = ACTIONS(364),
- [anon_sym_LT_LT] = ACTIONS(364),
- [anon_sym_AMP] = ACTIONS(372),
- [anon_sym_CARET] = ACTIONS(364),
- [anon_sym_PIPE] = ACTIONS(372),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_PERCENT] = ACTIONS(364),
- [anon_sym_STAR_STAR] = ACTIONS(364),
- [anon_sym_LT_EQ] = ACTIONS(364),
- [anon_sym_EQ_EQ] = ACTIONS(372),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(364),
- [anon_sym_BANG_EQ] = ACTIONS(372),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(364),
- [anon_sym_GT_EQ] = ACTIONS(364),
- [anon_sym_QMARK_QMARK] = ACTIONS(364),
- [anon_sym_instanceof] = ACTIONS(372),
- [anon_sym_BANG] = ACTIONS(75),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(796),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_STAR] = ACTIONS(449),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_in] = ACTIONS(363),
+ [anon_sym_COLON] = ACTIONS(355),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(369),
+ [anon_sym_GT] = ACTIONS(363),
+ [anon_sym_DOT] = ACTIONS(363),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [sym_optional_chain] = ACTIONS(355),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_AMP_AMP] = ACTIONS(355),
+ [anon_sym_PIPE_PIPE] = ACTIONS(355),
+ [anon_sym_GT_GT] = ACTIONS(363),
+ [anon_sym_GT_GT_GT] = ACTIONS(355),
+ [anon_sym_LT_LT] = ACTIONS(355),
+ [anon_sym_AMP] = ACTIONS(363),
+ [anon_sym_CARET] = ACTIONS(355),
+ [anon_sym_PIPE] = ACTIONS(363),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_PERCENT] = ACTIONS(355),
+ [anon_sym_STAR_STAR] = ACTIONS(355),
+ [anon_sym_LT_EQ] = ACTIONS(355),
+ [anon_sym_EQ_EQ] = ACTIONS(363),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(355),
+ [anon_sym_BANG_EQ] = ACTIONS(363),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(355),
+ [anon_sym_GT_EQ] = ACTIONS(355),
+ [anon_sym_QMARK_QMARK] = ACTIONS(355),
+ [anon_sym_instanceof] = ACTIONS(363),
+ [anon_sym_BANG] = ACTIONS(463),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
- [sym__automatic_semicolon] = ACTIONS(364),
- [sym__ternary_qmark] = ACTIONS(364),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
+ [sym__ternary_qmark] = ACTIONS(355),
[sym_html_comment] = ACTIONS(5),
},
[60] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(719),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_STAR] = ACTIONS(432),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_COMMA] = ACTIONS(364),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_SEMI] = ACTIONS(364),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_in] = ACTIONS(372),
- [anon_sym_of] = ACTIONS(372),
- [anon_sym_yield] = ACTIONS(436),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_GT] = ACTIONS(372),
- [anon_sym_DOT] = ACTIONS(372),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [sym_optional_chain] = ACTIONS(364),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_AMP_AMP] = ACTIONS(364),
- [anon_sym_PIPE_PIPE] = ACTIONS(364),
- [anon_sym_GT_GT] = ACTIONS(372),
- [anon_sym_GT_GT_GT] = ACTIONS(364),
- [anon_sym_LT_LT] = ACTIONS(364),
- [anon_sym_AMP] = ACTIONS(372),
- [anon_sym_CARET] = ACTIONS(364),
- [anon_sym_PIPE] = ACTIONS(372),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_PERCENT] = ACTIONS(364),
- [anon_sym_STAR_STAR] = ACTIONS(364),
- [anon_sym_LT_EQ] = ACTIONS(364),
- [anon_sym_EQ_EQ] = ACTIONS(372),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(364),
- [anon_sym_BANG_EQ] = ACTIONS(372),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(364),
- [anon_sym_GT_EQ] = ACTIONS(364),
- [anon_sym_QMARK_QMARK] = ACTIONS(364),
- [anon_sym_instanceof] = ACTIONS(372),
- [anon_sym_BANG] = ACTIONS(442),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(856),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_STAR] = ACTIONS(477),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_in] = ACTIONS(363),
+ [anon_sym_of] = ACTIONS(363),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(369),
+ [anon_sym_GT] = ACTIONS(363),
+ [anon_sym_DOT] = ACTIONS(363),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [sym_optional_chain] = ACTIONS(355),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_AMP_AMP] = ACTIONS(355),
+ [anon_sym_PIPE_PIPE] = ACTIONS(355),
+ [anon_sym_GT_GT] = ACTIONS(363),
+ [anon_sym_GT_GT_GT] = ACTIONS(355),
+ [anon_sym_LT_LT] = ACTIONS(355),
+ [anon_sym_AMP] = ACTIONS(363),
+ [anon_sym_CARET] = ACTIONS(355),
+ [anon_sym_PIPE] = ACTIONS(363),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_PERCENT] = ACTIONS(355),
+ [anon_sym_STAR_STAR] = ACTIONS(355),
+ [anon_sym_LT_EQ] = ACTIONS(355),
+ [anon_sym_EQ_EQ] = ACTIONS(363),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(355),
+ [anon_sym_BANG_EQ] = ACTIONS(363),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(355),
+ [anon_sym_GT_EQ] = ACTIONS(355),
+ [anon_sym_QMARK_QMARK] = ACTIONS(355),
+ [anon_sym_instanceof] = ACTIONS(363),
+ [anon_sym_BANG] = ACTIONS(487),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
- [sym__automatic_semicolon] = ACTIONS(364),
- [sym__ternary_qmark] = ACTIONS(364),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
+ [sym__ternary_qmark] = ACTIONS(355),
[sym_html_comment] = ACTIONS(5),
},
[61] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(837),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_STAR] = ACTIONS(458),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_in] = ACTIONS(372),
- [anon_sym_of] = ACTIONS(372),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_GT] = ACTIONS(372),
- [anon_sym_DOT] = ACTIONS(372),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [sym_optional_chain] = ACTIONS(364),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_AMP_AMP] = ACTIONS(364),
- [anon_sym_PIPE_PIPE] = ACTIONS(364),
- [anon_sym_GT_GT] = ACTIONS(372),
- [anon_sym_GT_GT_GT] = ACTIONS(364),
- [anon_sym_LT_LT] = ACTIONS(364),
- [anon_sym_AMP] = ACTIONS(372),
- [anon_sym_CARET] = ACTIONS(364),
- [anon_sym_PIPE] = ACTIONS(372),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_PERCENT] = ACTIONS(364),
- [anon_sym_STAR_STAR] = ACTIONS(364),
- [anon_sym_LT_EQ] = ACTIONS(364),
- [anon_sym_EQ_EQ] = ACTIONS(372),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(364),
- [anon_sym_BANG_EQ] = ACTIONS(372),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(364),
- [anon_sym_GT_EQ] = ACTIONS(364),
- [anon_sym_QMARK_QMARK] = ACTIONS(364),
- [anon_sym_instanceof] = ACTIONS(372),
- [anon_sym_BANG] = ACTIONS(472),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [ts_builtin_sym_end] = ACTIONS(499),
+ [sym_identifier] = ACTIONS(501),
+ [anon_sym_export] = ACTIONS(501),
+ [anon_sym_STAR] = ACTIONS(501),
+ [anon_sym_default] = ACTIONS(501),
+ [anon_sym_LBRACE] = ACTIONS(499),
+ [anon_sym_COMMA] = ACTIONS(499),
+ [anon_sym_RBRACE] = ACTIONS(499),
+ [anon_sym_import] = ACTIONS(501),
+ [anon_sym_with] = ACTIONS(501),
+ [anon_sym_var] = ACTIONS(501),
+ [anon_sym_let] = ACTIONS(501),
+ [anon_sym_const] = ACTIONS(501),
+ [anon_sym_else] = ACTIONS(501),
+ [anon_sym_if] = ACTIONS(501),
+ [anon_sym_switch] = ACTIONS(501),
+ [anon_sym_for] = ACTIONS(501),
+ [anon_sym_LPAREN] = ACTIONS(499),
+ [anon_sym_SEMI] = ACTIONS(499),
+ [anon_sym_await] = ACTIONS(501),
+ [anon_sym_in] = ACTIONS(501),
+ [anon_sym_of] = ACTIONS(501),
+ [anon_sym_while] = ACTIONS(501),
+ [anon_sym_do] = ACTIONS(501),
+ [anon_sym_try] = ACTIONS(501),
+ [anon_sym_break] = ACTIONS(501),
+ [anon_sym_continue] = ACTIONS(501),
+ [anon_sym_debugger] = ACTIONS(501),
+ [anon_sym_return] = ACTIONS(501),
+ [anon_sym_throw] = ACTIONS(501),
+ [anon_sym_case] = ACTIONS(501),
+ [anon_sym_yield] = ACTIONS(501),
+ [anon_sym_LBRACK] = ACTIONS(499),
+ [anon_sym_LT] = ACTIONS(501),
+ [anon_sym_GT] = ACTIONS(501),
+ [anon_sym_DOT] = ACTIONS(501),
+ [anon_sym_DQUOTE] = ACTIONS(499),
+ [anon_sym_SQUOTE] = ACTIONS(499),
+ [anon_sym_class] = ACTIONS(501),
+ [anon_sym_async] = ACTIONS(501),
+ [anon_sym_function] = ACTIONS(501),
+ [sym_optional_chain] = ACTIONS(499),
+ [anon_sym_new] = ACTIONS(501),
+ [anon_sym_AMP_AMP] = ACTIONS(499),
+ [anon_sym_PIPE_PIPE] = ACTIONS(499),
+ [anon_sym_GT_GT] = ACTIONS(501),
+ [anon_sym_GT_GT_GT] = ACTIONS(499),
+ [anon_sym_LT_LT] = ACTIONS(499),
+ [anon_sym_AMP] = ACTIONS(501),
+ [anon_sym_CARET] = ACTIONS(499),
+ [anon_sym_PIPE] = ACTIONS(501),
+ [anon_sym_PLUS] = ACTIONS(501),
+ [anon_sym_DASH] = ACTIONS(501),
+ [anon_sym_SLASH] = ACTIONS(501),
+ [anon_sym_PERCENT] = ACTIONS(499),
+ [anon_sym_STAR_STAR] = ACTIONS(499),
+ [anon_sym_LT_EQ] = ACTIONS(499),
+ [anon_sym_EQ_EQ] = ACTIONS(501),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(499),
+ [anon_sym_BANG_EQ] = ACTIONS(501),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(499),
+ [anon_sym_GT_EQ] = ACTIONS(499),
+ [anon_sym_QMARK_QMARK] = ACTIONS(499),
+ [anon_sym_instanceof] = ACTIONS(501),
+ [anon_sym_BANG] = ACTIONS(501),
+ [anon_sym_TILDE] = ACTIONS(499),
+ [anon_sym_typeof] = ACTIONS(501),
+ [anon_sym_void] = ACTIONS(501),
+ [anon_sym_delete] = ACTIONS(501),
+ [anon_sym_PLUS_PLUS] = ACTIONS(499),
+ [anon_sym_DASH_DASH] = ACTIONS(499),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
- [sym__ternary_qmark] = ACTIONS(364),
+ [anon_sym_BQUOTE] = ACTIONS(499),
+ [sym_number] = ACTIONS(499),
+ [sym_private_property_identifier] = ACTIONS(499),
+ [sym_this] = ACTIONS(501),
+ [sym_super] = ACTIONS(501),
+ [sym_true] = ACTIONS(501),
+ [sym_false] = ACTIONS(501),
+ [sym_null] = ACTIONS(501),
+ [sym_undefined] = ACTIONS(501),
+ [anon_sym_AT] = ACTIONS(499),
+ [anon_sym_static] = ACTIONS(501),
+ [anon_sym_get] = ACTIONS(501),
+ [anon_sym_set] = ACTIONS(501),
+ [sym__automatic_semicolon] = ACTIONS(499),
+ [sym__ternary_qmark] = ACTIONS(499),
[sym_html_comment] = ACTIONS(5),
},
[62] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(773),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_STAR] = ACTIONS(488),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_in] = ACTIONS(372),
- [anon_sym_COLON] = ACTIONS(364),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_GT] = ACTIONS(372),
- [anon_sym_DOT] = ACTIONS(372),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [sym_optional_chain] = ACTIONS(364),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_AMP_AMP] = ACTIONS(364),
- [anon_sym_PIPE_PIPE] = ACTIONS(364),
- [anon_sym_GT_GT] = ACTIONS(372),
- [anon_sym_GT_GT_GT] = ACTIONS(364),
- [anon_sym_LT_LT] = ACTIONS(364),
- [anon_sym_AMP] = ACTIONS(372),
- [anon_sym_CARET] = ACTIONS(364),
- [anon_sym_PIPE] = ACTIONS(372),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_PERCENT] = ACTIONS(364),
- [anon_sym_STAR_STAR] = ACTIONS(364),
- [anon_sym_LT_EQ] = ACTIONS(364),
- [anon_sym_EQ_EQ] = ACTIONS(372),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(364),
- [anon_sym_BANG_EQ] = ACTIONS(372),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(364),
- [anon_sym_GT_EQ] = ACTIONS(364),
- [anon_sym_QMARK_QMARK] = ACTIONS(364),
- [anon_sym_instanceof] = ACTIONS(372),
- [anon_sym_BANG] = ACTIONS(498),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [ts_builtin_sym_end] = ACTIONS(503),
+ [sym_identifier] = ACTIONS(505),
+ [anon_sym_export] = ACTIONS(505),
+ [anon_sym_STAR] = ACTIONS(507),
+ [anon_sym_default] = ACTIONS(505),
+ [anon_sym_LBRACE] = ACTIONS(503),
+ [anon_sym_COMMA] = ACTIONS(509),
+ [anon_sym_RBRACE] = ACTIONS(503),
+ [anon_sym_import] = ACTIONS(505),
+ [anon_sym_with] = ACTIONS(505),
+ [anon_sym_var] = ACTIONS(505),
+ [anon_sym_let] = ACTIONS(505),
+ [anon_sym_const] = ACTIONS(505),
+ [anon_sym_else] = ACTIONS(505),
+ [anon_sym_if] = ACTIONS(505),
+ [anon_sym_switch] = ACTIONS(505),
+ [anon_sym_for] = ACTIONS(505),
+ [anon_sym_LPAREN] = ACTIONS(503),
+ [anon_sym_SEMI] = ACTIONS(503),
+ [anon_sym_await] = ACTIONS(505),
+ [anon_sym_in] = ACTIONS(507),
+ [anon_sym_while] = ACTIONS(505),
+ [anon_sym_do] = ACTIONS(505),
+ [anon_sym_try] = ACTIONS(505),
+ [anon_sym_break] = ACTIONS(505),
+ [anon_sym_continue] = ACTIONS(505),
+ [anon_sym_debugger] = ACTIONS(505),
+ [anon_sym_return] = ACTIONS(505),
+ [anon_sym_throw] = ACTIONS(505),
+ [anon_sym_case] = ACTIONS(505),
+ [anon_sym_yield] = ACTIONS(505),
+ [anon_sym_EQ] = ACTIONS(511),
+ [anon_sym_LBRACK] = ACTIONS(503),
+ [anon_sym_LT] = ACTIONS(505),
+ [anon_sym_GT] = ACTIONS(507),
+ [anon_sym_DOT] = ACTIONS(507),
+ [anon_sym_DQUOTE] = ACTIONS(503),
+ [anon_sym_SQUOTE] = ACTIONS(503),
+ [anon_sym_class] = ACTIONS(505),
+ [anon_sym_async] = ACTIONS(505),
+ [anon_sym_function] = ACTIONS(505),
+ [sym_optional_chain] = ACTIONS(509),
+ [anon_sym_new] = ACTIONS(505),
+ [anon_sym_AMP_AMP] = ACTIONS(509),
+ [anon_sym_PIPE_PIPE] = ACTIONS(509),
+ [anon_sym_GT_GT] = ACTIONS(507),
+ [anon_sym_GT_GT_GT] = ACTIONS(509),
+ [anon_sym_LT_LT] = ACTIONS(509),
+ [anon_sym_AMP] = ACTIONS(507),
+ [anon_sym_CARET] = ACTIONS(509),
+ [anon_sym_PIPE] = ACTIONS(507),
+ [anon_sym_PLUS] = ACTIONS(505),
+ [anon_sym_DASH] = ACTIONS(505),
+ [anon_sym_SLASH] = ACTIONS(505),
+ [anon_sym_PERCENT] = ACTIONS(509),
+ [anon_sym_STAR_STAR] = ACTIONS(509),
+ [anon_sym_LT_EQ] = ACTIONS(509),
+ [anon_sym_EQ_EQ] = ACTIONS(507),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(509),
+ [anon_sym_BANG_EQ] = ACTIONS(507),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(509),
+ [anon_sym_GT_EQ] = ACTIONS(509),
+ [anon_sym_QMARK_QMARK] = ACTIONS(509),
+ [anon_sym_instanceof] = ACTIONS(507),
+ [anon_sym_BANG] = ACTIONS(505),
+ [anon_sym_TILDE] = ACTIONS(503),
+ [anon_sym_typeof] = ACTIONS(505),
+ [anon_sym_void] = ACTIONS(505),
+ [anon_sym_delete] = ACTIONS(505),
+ [anon_sym_PLUS_PLUS] = ACTIONS(503),
+ [anon_sym_DASH_DASH] = ACTIONS(503),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
- [sym__ternary_qmark] = ACTIONS(364),
+ [anon_sym_BQUOTE] = ACTIONS(503),
+ [sym_number] = ACTIONS(503),
+ [sym_private_property_identifier] = ACTIONS(503),
+ [sym_this] = ACTIONS(505),
+ [sym_super] = ACTIONS(505),
+ [sym_true] = ACTIONS(505),
+ [sym_false] = ACTIONS(505),
+ [sym_null] = ACTIONS(505),
+ [sym_undefined] = ACTIONS(505),
+ [anon_sym_AT] = ACTIONS(503),
+ [anon_sym_static] = ACTIONS(505),
+ [anon_sym_get] = ACTIONS(505),
+ [anon_sym_set] = ACTIONS(505),
+ [sym__automatic_semicolon] = ACTIONS(513),
+ [sym__ternary_qmark] = ACTIONS(509),
[sym_html_comment] = ACTIONS(5),
},
[63] = {
- [ts_builtin_sym_end] = ACTIONS(508),
- [sym_identifier] = ACTIONS(510),
- [anon_sym_export] = ACTIONS(510),
- [anon_sym_STAR] = ACTIONS(512),
- [anon_sym_default] = ACTIONS(510),
- [anon_sym_LBRACE] = ACTIONS(508),
- [anon_sym_COMMA] = ACTIONS(514),
- [anon_sym_RBRACE] = ACTIONS(508),
- [anon_sym_import] = ACTIONS(510),
- [anon_sym_with] = ACTIONS(510),
- [anon_sym_var] = ACTIONS(510),
- [anon_sym_let] = ACTIONS(510),
- [anon_sym_const] = ACTIONS(510),
- [anon_sym_else] = ACTIONS(510),
- [anon_sym_if] = ACTIONS(510),
- [anon_sym_switch] = ACTIONS(510),
- [anon_sym_for] = ACTIONS(510),
- [anon_sym_LPAREN] = ACTIONS(508),
- [anon_sym_SEMI] = ACTIONS(508),
- [anon_sym_await] = ACTIONS(510),
- [anon_sym_in] = ACTIONS(512),
- [anon_sym_while] = ACTIONS(510),
- [anon_sym_do] = ACTIONS(510),
- [anon_sym_try] = ACTIONS(510),
- [anon_sym_break] = ACTIONS(510),
- [anon_sym_continue] = ACTIONS(510),
- [anon_sym_debugger] = ACTIONS(510),
- [anon_sym_return] = ACTIONS(510),
- [anon_sym_throw] = ACTIONS(510),
- [anon_sym_case] = ACTIONS(510),
- [anon_sym_yield] = ACTIONS(510),
- [anon_sym_EQ] = ACTIONS(516),
- [anon_sym_LBRACK] = ACTIONS(508),
- [sym_glimmer_opening_tag] = ACTIONS(508),
- [anon_sym_LT] = ACTIONS(510),
- [anon_sym_GT] = ACTIONS(512),
- [anon_sym_DOT] = ACTIONS(512),
- [anon_sym_DQUOTE] = ACTIONS(508),
- [anon_sym_SQUOTE] = ACTIONS(508),
- [anon_sym_class] = ACTIONS(510),
- [anon_sym_async] = ACTIONS(510),
- [anon_sym_function] = ACTIONS(510),
- [sym_optional_chain] = ACTIONS(514),
- [anon_sym_new] = ACTIONS(510),
- [anon_sym_AMP_AMP] = ACTIONS(514),
- [anon_sym_PIPE_PIPE] = ACTIONS(514),
- [anon_sym_GT_GT] = ACTIONS(512),
- [anon_sym_GT_GT_GT] = ACTIONS(514),
- [anon_sym_LT_LT] = ACTIONS(514),
- [anon_sym_AMP] = ACTIONS(512),
- [anon_sym_CARET] = ACTIONS(514),
- [anon_sym_PIPE] = ACTIONS(512),
- [anon_sym_PLUS] = ACTIONS(510),
- [anon_sym_DASH] = ACTIONS(510),
- [anon_sym_SLASH] = ACTIONS(510),
- [anon_sym_PERCENT] = ACTIONS(514),
- [anon_sym_STAR_STAR] = ACTIONS(514),
- [anon_sym_LT_EQ] = ACTIONS(514),
- [anon_sym_EQ_EQ] = ACTIONS(512),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(514),
- [anon_sym_BANG_EQ] = ACTIONS(512),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(514),
- [anon_sym_GT_EQ] = ACTIONS(514),
- [anon_sym_QMARK_QMARK] = ACTIONS(514),
- [anon_sym_instanceof] = ACTIONS(512),
- [anon_sym_BANG] = ACTIONS(510),
- [anon_sym_TILDE] = ACTIONS(508),
- [anon_sym_typeof] = ACTIONS(510),
- [anon_sym_void] = ACTIONS(510),
- [anon_sym_delete] = ACTIONS(510),
- [anon_sym_PLUS_PLUS] = ACTIONS(508),
- [anon_sym_DASH_DASH] = ACTIONS(508),
+ [ts_builtin_sym_end] = ACTIONS(499),
+ [sym_identifier] = ACTIONS(501),
+ [anon_sym_export] = ACTIONS(501),
+ [anon_sym_STAR] = ACTIONS(501),
+ [anon_sym_default] = ACTIONS(501),
+ [anon_sym_LBRACE] = ACTIONS(499),
+ [anon_sym_COMMA] = ACTIONS(499),
+ [anon_sym_RBRACE] = ACTIONS(499),
+ [anon_sym_import] = ACTIONS(501),
+ [anon_sym_with] = ACTIONS(501),
+ [anon_sym_var] = ACTIONS(501),
+ [anon_sym_let] = ACTIONS(501),
+ [anon_sym_const] = ACTIONS(501),
+ [anon_sym_else] = ACTIONS(501),
+ [anon_sym_if] = ACTIONS(501),
+ [anon_sym_switch] = ACTIONS(501),
+ [anon_sym_for] = ACTIONS(501),
+ [anon_sym_LPAREN] = ACTIONS(499),
+ [anon_sym_SEMI] = ACTIONS(499),
+ [anon_sym_await] = ACTIONS(501),
+ [anon_sym_in] = ACTIONS(501),
+ [anon_sym_of] = ACTIONS(501),
+ [anon_sym_while] = ACTIONS(501),
+ [anon_sym_do] = ACTIONS(501),
+ [anon_sym_try] = ACTIONS(501),
+ [anon_sym_break] = ACTIONS(501),
+ [anon_sym_continue] = ACTIONS(501),
+ [anon_sym_debugger] = ACTIONS(501),
+ [anon_sym_return] = ACTIONS(501),
+ [anon_sym_throw] = ACTIONS(501),
+ [anon_sym_case] = ACTIONS(501),
+ [anon_sym_yield] = ACTIONS(501),
+ [anon_sym_LBRACK] = ACTIONS(499),
+ [anon_sym_LT] = ACTIONS(501),
+ [anon_sym_GT] = ACTIONS(501),
+ [anon_sym_DOT] = ACTIONS(501),
+ [anon_sym_DQUOTE] = ACTIONS(499),
+ [anon_sym_SQUOTE] = ACTIONS(499),
+ [anon_sym_class] = ACTIONS(501),
+ [anon_sym_async] = ACTIONS(501),
+ [anon_sym_function] = ACTIONS(501),
+ [sym_optional_chain] = ACTIONS(499),
+ [anon_sym_new] = ACTIONS(501),
+ [anon_sym_AMP_AMP] = ACTIONS(499),
+ [anon_sym_PIPE_PIPE] = ACTIONS(499),
+ [anon_sym_GT_GT] = ACTIONS(501),
+ [anon_sym_GT_GT_GT] = ACTIONS(499),
+ [anon_sym_LT_LT] = ACTIONS(499),
+ [anon_sym_AMP] = ACTIONS(501),
+ [anon_sym_CARET] = ACTIONS(499),
+ [anon_sym_PIPE] = ACTIONS(501),
+ [anon_sym_PLUS] = ACTIONS(501),
+ [anon_sym_DASH] = ACTIONS(501),
+ [anon_sym_SLASH] = ACTIONS(501),
+ [anon_sym_PERCENT] = ACTIONS(499),
+ [anon_sym_STAR_STAR] = ACTIONS(499),
+ [anon_sym_LT_EQ] = ACTIONS(499),
+ [anon_sym_EQ_EQ] = ACTIONS(501),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(499),
+ [anon_sym_BANG_EQ] = ACTIONS(501),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(499),
+ [anon_sym_GT_EQ] = ACTIONS(499),
+ [anon_sym_QMARK_QMARK] = ACTIONS(499),
+ [anon_sym_instanceof] = ACTIONS(501),
+ [anon_sym_BANG] = ACTIONS(501),
+ [anon_sym_TILDE] = ACTIONS(499),
+ [anon_sym_typeof] = ACTIONS(501),
+ [anon_sym_void] = ACTIONS(501),
+ [anon_sym_delete] = ACTIONS(501),
+ [anon_sym_PLUS_PLUS] = ACTIONS(499),
+ [anon_sym_DASH_DASH] = ACTIONS(499),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(508),
- [sym_number] = ACTIONS(508),
- [sym_private_property_identifier] = ACTIONS(508),
- [sym_this] = ACTIONS(510),
- [sym_super] = ACTIONS(510),
- [sym_true] = ACTIONS(510),
- [sym_false] = ACTIONS(510),
- [sym_null] = ACTIONS(510),
- [sym_undefined] = ACTIONS(510),
- [anon_sym_AT] = ACTIONS(508),
- [anon_sym_static] = ACTIONS(510),
- [anon_sym_get] = ACTIONS(510),
- [anon_sym_set] = ACTIONS(510),
- [sym__automatic_semicolon] = ACTIONS(518),
- [sym__ternary_qmark] = ACTIONS(514),
+ [anon_sym_BQUOTE] = ACTIONS(499),
+ [sym_number] = ACTIONS(499),
+ [sym_private_property_identifier] = ACTIONS(499),
+ [sym_this] = ACTIONS(501),
+ [sym_super] = ACTIONS(501),
+ [sym_true] = ACTIONS(501),
+ [sym_false] = ACTIONS(501),
+ [sym_null] = ACTIONS(501),
+ [sym_undefined] = ACTIONS(501),
+ [anon_sym_AT] = ACTIONS(499),
+ [anon_sym_static] = ACTIONS(501),
+ [anon_sym_get] = ACTIONS(501),
+ [anon_sym_set] = ACTIONS(501),
+ [sym__automatic_semicolon] = ACTIONS(515),
+ [sym__ternary_qmark] = ACTIONS(499),
[sym_html_comment] = ACTIONS(5),
},
[64] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(791),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(483),
- [sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1311),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1310),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(524),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(526),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [ts_builtin_sym_end] = ACTIONS(503),
+ [sym_identifier] = ACTIONS(505),
+ [anon_sym_export] = ACTIONS(505),
+ [anon_sym_STAR] = ACTIONS(505),
+ [anon_sym_default] = ACTIONS(505),
+ [anon_sym_LBRACE] = ACTIONS(503),
+ [anon_sym_COMMA] = ACTIONS(503),
+ [anon_sym_RBRACE] = ACTIONS(503),
+ [anon_sym_import] = ACTIONS(505),
+ [anon_sym_with] = ACTIONS(505),
+ [anon_sym_var] = ACTIONS(505),
+ [anon_sym_let] = ACTIONS(505),
+ [anon_sym_const] = ACTIONS(505),
+ [anon_sym_else] = ACTIONS(505),
+ [anon_sym_if] = ACTIONS(505),
+ [anon_sym_switch] = ACTIONS(505),
+ [anon_sym_for] = ACTIONS(505),
+ [anon_sym_LPAREN] = ACTIONS(503),
+ [anon_sym_SEMI] = ACTIONS(503),
+ [anon_sym_await] = ACTIONS(505),
+ [anon_sym_in] = ACTIONS(505),
+ [anon_sym_of] = ACTIONS(505),
+ [anon_sym_while] = ACTIONS(505),
+ [anon_sym_do] = ACTIONS(505),
+ [anon_sym_try] = ACTIONS(505),
+ [anon_sym_break] = ACTIONS(505),
+ [anon_sym_continue] = ACTIONS(505),
+ [anon_sym_debugger] = ACTIONS(505),
+ [anon_sym_return] = ACTIONS(505),
+ [anon_sym_throw] = ACTIONS(505),
+ [anon_sym_case] = ACTIONS(505),
+ [anon_sym_yield] = ACTIONS(505),
+ [anon_sym_LBRACK] = ACTIONS(503),
+ [anon_sym_LT] = ACTIONS(505),
+ [anon_sym_GT] = ACTIONS(505),
+ [anon_sym_DOT] = ACTIONS(505),
+ [anon_sym_DQUOTE] = ACTIONS(503),
+ [anon_sym_SQUOTE] = ACTIONS(503),
+ [anon_sym_class] = ACTIONS(505),
+ [anon_sym_async] = ACTIONS(505),
+ [anon_sym_function] = ACTIONS(505),
+ [sym_optional_chain] = ACTIONS(503),
+ [anon_sym_new] = ACTIONS(505),
+ [anon_sym_AMP_AMP] = ACTIONS(503),
+ [anon_sym_PIPE_PIPE] = ACTIONS(503),
+ [anon_sym_GT_GT] = ACTIONS(505),
+ [anon_sym_GT_GT_GT] = ACTIONS(503),
+ [anon_sym_LT_LT] = ACTIONS(503),
+ [anon_sym_AMP] = ACTIONS(505),
+ [anon_sym_CARET] = ACTIONS(503),
+ [anon_sym_PIPE] = ACTIONS(505),
+ [anon_sym_PLUS] = ACTIONS(505),
+ [anon_sym_DASH] = ACTIONS(505),
+ [anon_sym_SLASH] = ACTIONS(505),
+ [anon_sym_PERCENT] = ACTIONS(503),
+ [anon_sym_STAR_STAR] = ACTIONS(503),
+ [anon_sym_LT_EQ] = ACTIONS(503),
+ [anon_sym_EQ_EQ] = ACTIONS(505),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(503),
+ [anon_sym_BANG_EQ] = ACTIONS(505),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(503),
+ [anon_sym_GT_EQ] = ACTIONS(503),
+ [anon_sym_QMARK_QMARK] = ACTIONS(503),
+ [anon_sym_instanceof] = ACTIONS(505),
+ [anon_sym_BANG] = ACTIONS(505),
+ [anon_sym_TILDE] = ACTIONS(503),
+ [anon_sym_typeof] = ACTIONS(505),
+ [anon_sym_void] = ACTIONS(505),
+ [anon_sym_delete] = ACTIONS(505),
+ [anon_sym_PLUS_PLUS] = ACTIONS(503),
+ [anon_sym_DASH_DASH] = ACTIONS(503),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(503),
+ [sym_number] = ACTIONS(503),
+ [sym_private_property_identifier] = ACTIONS(503),
+ [sym_this] = ACTIONS(505),
+ [sym_super] = ACTIONS(505),
+ [sym_true] = ACTIONS(505),
+ [sym_false] = ACTIONS(505),
+ [sym_null] = ACTIONS(505),
+ [sym_undefined] = ACTIONS(505),
+ [anon_sym_AT] = ACTIONS(503),
+ [anon_sym_static] = ACTIONS(505),
+ [anon_sym_get] = ACTIONS(505),
+ [anon_sym_set] = ACTIONS(505),
+ [sym__automatic_semicolon] = ACTIONS(517),
+ [sym__ternary_qmark] = ACTIONS(503),
[sym_html_comment] = ACTIONS(5),
},
[65] = {
- [ts_builtin_sym_end] = ACTIONS(532),
- [sym_identifier] = ACTIONS(534),
- [anon_sym_export] = ACTIONS(534),
- [anon_sym_STAR] = ACTIONS(536),
- [anon_sym_default] = ACTIONS(534),
- [anon_sym_LBRACE] = ACTIONS(532),
- [anon_sym_COMMA] = ACTIONS(538),
- [anon_sym_RBRACE] = ACTIONS(532),
- [anon_sym_import] = ACTIONS(534),
- [anon_sym_with] = ACTIONS(534),
- [anon_sym_var] = ACTIONS(534),
- [anon_sym_let] = ACTIONS(534),
- [anon_sym_const] = ACTIONS(534),
- [anon_sym_else] = ACTIONS(534),
- [anon_sym_if] = ACTIONS(534),
- [anon_sym_switch] = ACTIONS(534),
- [anon_sym_for] = ACTIONS(534),
- [anon_sym_LPAREN] = ACTIONS(532),
- [anon_sym_SEMI] = ACTIONS(532),
- [anon_sym_await] = ACTIONS(534),
- [anon_sym_in] = ACTIONS(536),
- [anon_sym_while] = ACTIONS(534),
- [anon_sym_do] = ACTIONS(534),
- [anon_sym_try] = ACTIONS(534),
- [anon_sym_break] = ACTIONS(534),
- [anon_sym_continue] = ACTIONS(534),
- [anon_sym_debugger] = ACTIONS(534),
- [anon_sym_return] = ACTIONS(534),
- [anon_sym_throw] = ACTIONS(534),
- [anon_sym_case] = ACTIONS(534),
- [anon_sym_yield] = ACTIONS(534),
- [anon_sym_LBRACK] = ACTIONS(532),
- [sym_glimmer_opening_tag] = ACTIONS(532),
- [anon_sym_LT] = ACTIONS(534),
- [anon_sym_GT] = ACTIONS(536),
- [anon_sym_DOT] = ACTIONS(536),
- [anon_sym_DQUOTE] = ACTIONS(532),
- [anon_sym_SQUOTE] = ACTIONS(532),
- [anon_sym_class] = ACTIONS(534),
- [anon_sym_async] = ACTIONS(534),
- [anon_sym_function] = ACTIONS(534),
- [sym_optional_chain] = ACTIONS(538),
- [anon_sym_new] = ACTIONS(534),
- [anon_sym_AMP_AMP] = ACTIONS(538),
- [anon_sym_PIPE_PIPE] = ACTIONS(538),
- [anon_sym_GT_GT] = ACTIONS(536),
- [anon_sym_GT_GT_GT] = ACTIONS(538),
- [anon_sym_LT_LT] = ACTIONS(538),
- [anon_sym_AMP] = ACTIONS(536),
- [anon_sym_CARET] = ACTIONS(538),
- [anon_sym_PIPE] = ACTIONS(536),
- [anon_sym_PLUS] = ACTIONS(534),
- [anon_sym_DASH] = ACTIONS(534),
- [anon_sym_SLASH] = ACTIONS(534),
- [anon_sym_PERCENT] = ACTIONS(538),
- [anon_sym_STAR_STAR] = ACTIONS(538),
- [anon_sym_LT_EQ] = ACTIONS(538),
- [anon_sym_EQ_EQ] = ACTIONS(536),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(538),
- [anon_sym_BANG_EQ] = ACTIONS(536),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(538),
- [anon_sym_GT_EQ] = ACTIONS(538),
- [anon_sym_QMARK_QMARK] = ACTIONS(538),
- [anon_sym_instanceof] = ACTIONS(536),
- [anon_sym_BANG] = ACTIONS(534),
- [anon_sym_TILDE] = ACTIONS(532),
- [anon_sym_typeof] = ACTIONS(534),
- [anon_sym_void] = ACTIONS(534),
- [anon_sym_delete] = ACTIONS(534),
- [anon_sym_PLUS_PLUS] = ACTIONS(532),
- [anon_sym_DASH_DASH] = ACTIONS(532),
+ [ts_builtin_sym_end] = ACTIONS(519),
+ [sym_identifier] = ACTIONS(521),
+ [anon_sym_export] = ACTIONS(521),
+ [anon_sym_STAR] = ACTIONS(521),
+ [anon_sym_default] = ACTIONS(521),
+ [anon_sym_LBRACE] = ACTIONS(519),
+ [anon_sym_COMMA] = ACTIONS(519),
+ [anon_sym_RBRACE] = ACTIONS(519),
+ [anon_sym_import] = ACTIONS(521),
+ [anon_sym_with] = ACTIONS(521),
+ [anon_sym_var] = ACTIONS(521),
+ [anon_sym_let] = ACTIONS(521),
+ [anon_sym_const] = ACTIONS(521),
+ [anon_sym_else] = ACTIONS(521),
+ [anon_sym_if] = ACTIONS(521),
+ [anon_sym_switch] = ACTIONS(521),
+ [anon_sym_for] = ACTIONS(521),
+ [anon_sym_LPAREN] = ACTIONS(519),
+ [anon_sym_SEMI] = ACTIONS(519),
+ [anon_sym_await] = ACTIONS(521),
+ [anon_sym_in] = ACTIONS(521),
+ [anon_sym_of] = ACTIONS(521),
+ [anon_sym_while] = ACTIONS(521),
+ [anon_sym_do] = ACTIONS(521),
+ [anon_sym_try] = ACTIONS(521),
+ [anon_sym_break] = ACTIONS(521),
+ [anon_sym_continue] = ACTIONS(521),
+ [anon_sym_debugger] = ACTIONS(521),
+ [anon_sym_return] = ACTIONS(521),
+ [anon_sym_throw] = ACTIONS(521),
+ [anon_sym_case] = ACTIONS(521),
+ [anon_sym_yield] = ACTIONS(521),
+ [anon_sym_LBRACK] = ACTIONS(519),
+ [anon_sym_LT] = ACTIONS(521),
+ [anon_sym_GT] = ACTIONS(521),
+ [anon_sym_DOT] = ACTIONS(521),
+ [anon_sym_DQUOTE] = ACTIONS(519),
+ [anon_sym_SQUOTE] = ACTIONS(519),
+ [anon_sym_class] = ACTIONS(521),
+ [anon_sym_async] = ACTIONS(521),
+ [anon_sym_function] = ACTIONS(521),
+ [sym_optional_chain] = ACTIONS(519),
+ [anon_sym_new] = ACTIONS(521),
+ [anon_sym_AMP_AMP] = ACTIONS(519),
+ [anon_sym_PIPE_PIPE] = ACTIONS(519),
+ [anon_sym_GT_GT] = ACTIONS(521),
+ [anon_sym_GT_GT_GT] = ACTIONS(519),
+ [anon_sym_LT_LT] = ACTIONS(519),
+ [anon_sym_AMP] = ACTIONS(521),
+ [anon_sym_CARET] = ACTIONS(519),
+ [anon_sym_PIPE] = ACTIONS(521),
+ [anon_sym_PLUS] = ACTIONS(521),
+ [anon_sym_DASH] = ACTIONS(521),
+ [anon_sym_SLASH] = ACTIONS(521),
+ [anon_sym_PERCENT] = ACTIONS(519),
+ [anon_sym_STAR_STAR] = ACTIONS(519),
+ [anon_sym_LT_EQ] = ACTIONS(519),
+ [anon_sym_EQ_EQ] = ACTIONS(521),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(519),
+ [anon_sym_BANG_EQ] = ACTIONS(521),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(519),
+ [anon_sym_GT_EQ] = ACTIONS(519),
+ [anon_sym_QMARK_QMARK] = ACTIONS(519),
+ [anon_sym_instanceof] = ACTIONS(521),
+ [anon_sym_BANG] = ACTIONS(521),
+ [anon_sym_TILDE] = ACTIONS(519),
+ [anon_sym_typeof] = ACTIONS(521),
+ [anon_sym_void] = ACTIONS(521),
+ [anon_sym_delete] = ACTIONS(521),
+ [anon_sym_PLUS_PLUS] = ACTIONS(519),
+ [anon_sym_DASH_DASH] = ACTIONS(519),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(532),
- [sym_number] = ACTIONS(532),
- [sym_private_property_identifier] = ACTIONS(532),
- [sym_this] = ACTIONS(534),
- [sym_super] = ACTIONS(534),
- [sym_true] = ACTIONS(534),
- [sym_false] = ACTIONS(534),
- [sym_null] = ACTIONS(534),
- [sym_undefined] = ACTIONS(534),
- [anon_sym_AT] = ACTIONS(532),
- [anon_sym_static] = ACTIONS(534),
- [anon_sym_get] = ACTIONS(534),
- [anon_sym_set] = ACTIONS(534),
- [sym__automatic_semicolon] = ACTIONS(540),
- [sym__ternary_qmark] = ACTIONS(538),
+ [anon_sym_BQUOTE] = ACTIONS(519),
+ [sym_number] = ACTIONS(519),
+ [sym_private_property_identifier] = ACTIONS(519),
+ [sym_this] = ACTIONS(521),
+ [sym_super] = ACTIONS(521),
+ [sym_true] = ACTIONS(521),
+ [sym_false] = ACTIONS(521),
+ [sym_null] = ACTIONS(521),
+ [sym_undefined] = ACTIONS(521),
+ [anon_sym_AT] = ACTIONS(519),
+ [anon_sym_static] = ACTIONS(521),
+ [anon_sym_get] = ACTIONS(521),
+ [anon_sym_set] = ACTIONS(521),
+ [sym__automatic_semicolon] = ACTIONS(519),
+ [sym__ternary_qmark] = ACTIONS(519),
[sym_html_comment] = ACTIONS(5),
},
[66] = {
- [ts_builtin_sym_end] = ACTIONS(542),
- [sym_identifier] = ACTIONS(544),
- [anon_sym_export] = ACTIONS(544),
- [anon_sym_STAR] = ACTIONS(546),
- [anon_sym_default] = ACTIONS(544),
- [anon_sym_LBRACE] = ACTIONS(542),
- [anon_sym_COMMA] = ACTIONS(548),
- [anon_sym_RBRACE] = ACTIONS(542),
- [anon_sym_import] = ACTIONS(544),
- [anon_sym_with] = ACTIONS(544),
- [anon_sym_var] = ACTIONS(544),
- [anon_sym_let] = ACTIONS(544),
- [anon_sym_const] = ACTIONS(544),
- [anon_sym_else] = ACTIONS(544),
- [anon_sym_if] = ACTIONS(544),
- [anon_sym_switch] = ACTIONS(544),
- [anon_sym_for] = ACTIONS(544),
- [anon_sym_LPAREN] = ACTIONS(542),
- [anon_sym_SEMI] = ACTIONS(542),
- [anon_sym_await] = ACTIONS(544),
- [anon_sym_in] = ACTIONS(546),
- [anon_sym_while] = ACTIONS(544),
- [anon_sym_do] = ACTIONS(544),
- [anon_sym_try] = ACTIONS(544),
- [anon_sym_break] = ACTIONS(544),
- [anon_sym_continue] = ACTIONS(544),
- [anon_sym_debugger] = ACTIONS(544),
- [anon_sym_return] = ACTIONS(544),
- [anon_sym_throw] = ACTIONS(544),
- [anon_sym_case] = ACTIONS(544),
- [anon_sym_yield] = ACTIONS(544),
- [anon_sym_LBRACK] = ACTIONS(542),
- [sym_glimmer_opening_tag] = ACTIONS(542),
- [anon_sym_LT] = ACTIONS(544),
- [anon_sym_GT] = ACTIONS(546),
- [anon_sym_DOT] = ACTIONS(546),
- [anon_sym_DQUOTE] = ACTIONS(542),
- [anon_sym_SQUOTE] = ACTIONS(542),
- [anon_sym_class] = ACTIONS(544),
- [anon_sym_async] = ACTIONS(544),
- [anon_sym_function] = ACTIONS(544),
- [sym_optional_chain] = ACTIONS(548),
- [anon_sym_new] = ACTIONS(544),
- [anon_sym_AMP_AMP] = ACTIONS(548),
- [anon_sym_PIPE_PIPE] = ACTIONS(548),
- [anon_sym_GT_GT] = ACTIONS(546),
- [anon_sym_GT_GT_GT] = ACTIONS(548),
- [anon_sym_LT_LT] = ACTIONS(548),
- [anon_sym_AMP] = ACTIONS(546),
- [anon_sym_CARET] = ACTIONS(548),
- [anon_sym_PIPE] = ACTIONS(546),
- [anon_sym_PLUS] = ACTIONS(544),
- [anon_sym_DASH] = ACTIONS(544),
- [anon_sym_SLASH] = ACTIONS(544),
- [anon_sym_PERCENT] = ACTIONS(548),
- [anon_sym_STAR_STAR] = ACTIONS(548),
- [anon_sym_LT_EQ] = ACTIONS(548),
- [anon_sym_EQ_EQ] = ACTIONS(546),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(548),
- [anon_sym_BANG_EQ] = ACTIONS(546),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(548),
- [anon_sym_GT_EQ] = ACTIONS(548),
- [anon_sym_QMARK_QMARK] = ACTIONS(548),
- [anon_sym_instanceof] = ACTIONS(546),
- [anon_sym_BANG] = ACTIONS(544),
- [anon_sym_TILDE] = ACTIONS(542),
- [anon_sym_typeof] = ACTIONS(544),
- [anon_sym_void] = ACTIONS(544),
- [anon_sym_delete] = ACTIONS(544),
- [anon_sym_PLUS_PLUS] = ACTIONS(542),
- [anon_sym_DASH_DASH] = ACTIONS(542),
+ [ts_builtin_sym_end] = ACTIONS(523),
+ [sym_identifier] = ACTIONS(525),
+ [anon_sym_export] = ACTIONS(525),
+ [anon_sym_STAR] = ACTIONS(525),
+ [anon_sym_default] = ACTIONS(525),
+ [anon_sym_LBRACE] = ACTIONS(523),
+ [anon_sym_COMMA] = ACTIONS(523),
+ [anon_sym_RBRACE] = ACTIONS(523),
+ [anon_sym_import] = ACTIONS(525),
+ [anon_sym_with] = ACTIONS(525),
+ [anon_sym_var] = ACTIONS(525),
+ [anon_sym_let] = ACTIONS(525),
+ [anon_sym_const] = ACTIONS(525),
+ [anon_sym_else] = ACTIONS(525),
+ [anon_sym_if] = ACTIONS(525),
+ [anon_sym_switch] = ACTIONS(525),
+ [anon_sym_for] = ACTIONS(525),
+ [anon_sym_LPAREN] = ACTIONS(523),
+ [anon_sym_SEMI] = ACTIONS(523),
+ [anon_sym_await] = ACTIONS(525),
+ [anon_sym_in] = ACTIONS(525),
+ [anon_sym_of] = ACTIONS(525),
+ [anon_sym_while] = ACTIONS(525),
+ [anon_sym_do] = ACTIONS(525),
+ [anon_sym_try] = ACTIONS(525),
+ [anon_sym_break] = ACTIONS(525),
+ [anon_sym_continue] = ACTIONS(525),
+ [anon_sym_debugger] = ACTIONS(525),
+ [anon_sym_return] = ACTIONS(525),
+ [anon_sym_throw] = ACTIONS(525),
+ [anon_sym_case] = ACTIONS(525),
+ [anon_sym_yield] = ACTIONS(525),
+ [anon_sym_LBRACK] = ACTIONS(523),
+ [anon_sym_LT] = ACTIONS(525),
+ [anon_sym_GT] = ACTIONS(525),
+ [anon_sym_DOT] = ACTIONS(525),
+ [anon_sym_DQUOTE] = ACTIONS(523),
+ [anon_sym_SQUOTE] = ACTIONS(523),
+ [anon_sym_class] = ACTIONS(525),
+ [anon_sym_async] = ACTIONS(525),
+ [anon_sym_function] = ACTIONS(525),
+ [sym_optional_chain] = ACTIONS(523),
+ [anon_sym_new] = ACTIONS(525),
+ [anon_sym_AMP_AMP] = ACTIONS(523),
+ [anon_sym_PIPE_PIPE] = ACTIONS(523),
+ [anon_sym_GT_GT] = ACTIONS(525),
+ [anon_sym_GT_GT_GT] = ACTIONS(523),
+ [anon_sym_LT_LT] = ACTIONS(523),
+ [anon_sym_AMP] = ACTIONS(525),
+ [anon_sym_CARET] = ACTIONS(523),
+ [anon_sym_PIPE] = ACTIONS(525),
+ [anon_sym_PLUS] = ACTIONS(525),
+ [anon_sym_DASH] = ACTIONS(525),
+ [anon_sym_SLASH] = ACTIONS(525),
+ [anon_sym_PERCENT] = ACTIONS(523),
+ [anon_sym_STAR_STAR] = ACTIONS(523),
+ [anon_sym_LT_EQ] = ACTIONS(523),
+ [anon_sym_EQ_EQ] = ACTIONS(525),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(523),
+ [anon_sym_BANG_EQ] = ACTIONS(525),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(523),
+ [anon_sym_GT_EQ] = ACTIONS(523),
+ [anon_sym_QMARK_QMARK] = ACTIONS(523),
+ [anon_sym_instanceof] = ACTIONS(525),
+ [anon_sym_BANG] = ACTIONS(525),
+ [anon_sym_TILDE] = ACTIONS(523),
+ [anon_sym_typeof] = ACTIONS(525),
+ [anon_sym_void] = ACTIONS(525),
+ [anon_sym_delete] = ACTIONS(525),
+ [anon_sym_PLUS_PLUS] = ACTIONS(523),
+ [anon_sym_DASH_DASH] = ACTIONS(523),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(542),
- [sym_number] = ACTIONS(542),
- [sym_private_property_identifier] = ACTIONS(542),
- [sym_this] = ACTIONS(544),
- [sym_super] = ACTIONS(544),
- [sym_true] = ACTIONS(544),
- [sym_false] = ACTIONS(544),
- [sym_null] = ACTIONS(544),
- [sym_undefined] = ACTIONS(544),
- [anon_sym_AT] = ACTIONS(542),
- [anon_sym_static] = ACTIONS(544),
- [anon_sym_get] = ACTIONS(544),
- [anon_sym_set] = ACTIONS(544),
- [sym__automatic_semicolon] = ACTIONS(550),
- [sym__ternary_qmark] = ACTIONS(548),
+ [anon_sym_BQUOTE] = ACTIONS(523),
+ [sym_number] = ACTIONS(523),
+ [sym_private_property_identifier] = ACTIONS(523),
+ [sym_this] = ACTIONS(525),
+ [sym_super] = ACTIONS(525),
+ [sym_true] = ACTIONS(525),
+ [sym_false] = ACTIONS(525),
+ [sym_null] = ACTIONS(525),
+ [sym_undefined] = ACTIONS(525),
+ [anon_sym_AT] = ACTIONS(523),
+ [anon_sym_static] = ACTIONS(525),
+ [anon_sym_get] = ACTIONS(525),
+ [anon_sym_set] = ACTIONS(525),
+ [sym__automatic_semicolon] = ACTIONS(523),
+ [sym__ternary_qmark] = ACTIONS(523),
[sym_html_comment] = ACTIONS(5),
},
[67] = {
- [ts_builtin_sym_end] = ACTIONS(552),
- [sym_identifier] = ACTIONS(554),
- [anon_sym_export] = ACTIONS(554),
- [anon_sym_STAR] = ACTIONS(556),
- [anon_sym_default] = ACTIONS(554),
- [anon_sym_LBRACE] = ACTIONS(552),
- [anon_sym_COMMA] = ACTIONS(558),
- [anon_sym_RBRACE] = ACTIONS(552),
- [anon_sym_import] = ACTIONS(554),
- [anon_sym_with] = ACTIONS(554),
- [anon_sym_var] = ACTIONS(554),
- [anon_sym_let] = ACTIONS(554),
- [anon_sym_const] = ACTIONS(554),
- [anon_sym_else] = ACTIONS(554),
- [anon_sym_if] = ACTIONS(554),
- [anon_sym_switch] = ACTIONS(554),
- [anon_sym_for] = ACTIONS(554),
- [anon_sym_LPAREN] = ACTIONS(552),
- [anon_sym_SEMI] = ACTIONS(552),
- [anon_sym_await] = ACTIONS(554),
- [anon_sym_in] = ACTIONS(556),
- [anon_sym_while] = ACTIONS(554),
- [anon_sym_do] = ACTIONS(554),
- [anon_sym_try] = ACTIONS(554),
- [anon_sym_break] = ACTIONS(554),
- [anon_sym_continue] = ACTIONS(554),
- [anon_sym_debugger] = ACTIONS(554),
- [anon_sym_return] = ACTIONS(554),
- [anon_sym_throw] = ACTIONS(554),
- [anon_sym_case] = ACTIONS(554),
- [anon_sym_yield] = ACTIONS(554),
- [anon_sym_LBRACK] = ACTIONS(552),
- [sym_glimmer_opening_tag] = ACTIONS(552),
- [anon_sym_LT] = ACTIONS(554),
- [anon_sym_GT] = ACTIONS(556),
- [anon_sym_DOT] = ACTIONS(556),
- [anon_sym_DQUOTE] = ACTIONS(552),
- [anon_sym_SQUOTE] = ACTIONS(552),
- [anon_sym_class] = ACTIONS(554),
- [anon_sym_async] = ACTIONS(554),
- [anon_sym_function] = ACTIONS(554),
- [sym_optional_chain] = ACTIONS(558),
- [anon_sym_new] = ACTIONS(554),
- [anon_sym_AMP_AMP] = ACTIONS(558),
- [anon_sym_PIPE_PIPE] = ACTIONS(558),
- [anon_sym_GT_GT] = ACTIONS(556),
- [anon_sym_GT_GT_GT] = ACTIONS(558),
- [anon_sym_LT_LT] = ACTIONS(558),
- [anon_sym_AMP] = ACTIONS(556),
- [anon_sym_CARET] = ACTIONS(558),
- [anon_sym_PIPE] = ACTIONS(556),
- [anon_sym_PLUS] = ACTIONS(554),
- [anon_sym_DASH] = ACTIONS(554),
- [anon_sym_SLASH] = ACTIONS(554),
- [anon_sym_PERCENT] = ACTIONS(558),
- [anon_sym_STAR_STAR] = ACTIONS(558),
- [anon_sym_LT_EQ] = ACTIONS(558),
- [anon_sym_EQ_EQ] = ACTIONS(556),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(558),
- [anon_sym_BANG_EQ] = ACTIONS(556),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(558),
- [anon_sym_GT_EQ] = ACTIONS(558),
- [anon_sym_QMARK_QMARK] = ACTIONS(558),
- [anon_sym_instanceof] = ACTIONS(556),
- [anon_sym_BANG] = ACTIONS(554),
- [anon_sym_TILDE] = ACTIONS(552),
- [anon_sym_typeof] = ACTIONS(554),
- [anon_sym_void] = ACTIONS(554),
- [anon_sym_delete] = ACTIONS(554),
- [anon_sym_PLUS_PLUS] = ACTIONS(552),
- [anon_sym_DASH_DASH] = ACTIONS(552),
+ [ts_builtin_sym_end] = ACTIONS(527),
+ [sym_identifier] = ACTIONS(529),
+ [anon_sym_export] = ACTIONS(529),
+ [anon_sym_STAR] = ACTIONS(529),
+ [anon_sym_default] = ACTIONS(529),
+ [anon_sym_LBRACE] = ACTIONS(527),
+ [anon_sym_COMMA] = ACTIONS(527),
+ [anon_sym_RBRACE] = ACTIONS(527),
+ [anon_sym_import] = ACTIONS(529),
+ [anon_sym_with] = ACTIONS(529),
+ [anon_sym_var] = ACTIONS(529),
+ [anon_sym_let] = ACTIONS(529),
+ [anon_sym_const] = ACTIONS(529),
+ [anon_sym_else] = ACTIONS(529),
+ [anon_sym_if] = ACTIONS(529),
+ [anon_sym_switch] = ACTIONS(529),
+ [anon_sym_for] = ACTIONS(529),
+ [anon_sym_LPAREN] = ACTIONS(527),
+ [anon_sym_SEMI] = ACTIONS(527),
+ [anon_sym_await] = ACTIONS(529),
+ [anon_sym_in] = ACTIONS(529),
+ [anon_sym_of] = ACTIONS(529),
+ [anon_sym_while] = ACTIONS(529),
+ [anon_sym_do] = ACTIONS(529),
+ [anon_sym_try] = ACTIONS(529),
+ [anon_sym_break] = ACTIONS(529),
+ [anon_sym_continue] = ACTIONS(529),
+ [anon_sym_debugger] = ACTIONS(529),
+ [anon_sym_return] = ACTIONS(529),
+ [anon_sym_throw] = ACTIONS(529),
+ [anon_sym_case] = ACTIONS(529),
+ [anon_sym_yield] = ACTIONS(529),
+ [anon_sym_LBRACK] = ACTIONS(527),
+ [anon_sym_LT] = ACTIONS(529),
+ [anon_sym_GT] = ACTIONS(529),
+ [anon_sym_DOT] = ACTIONS(529),
+ [anon_sym_DQUOTE] = ACTIONS(527),
+ [anon_sym_SQUOTE] = ACTIONS(527),
+ [anon_sym_class] = ACTIONS(529),
+ [anon_sym_async] = ACTIONS(529),
+ [anon_sym_function] = ACTIONS(529),
+ [sym_optional_chain] = ACTIONS(527),
+ [anon_sym_new] = ACTIONS(529),
+ [anon_sym_AMP_AMP] = ACTIONS(527),
+ [anon_sym_PIPE_PIPE] = ACTIONS(527),
+ [anon_sym_GT_GT] = ACTIONS(529),
+ [anon_sym_GT_GT_GT] = ACTIONS(527),
+ [anon_sym_LT_LT] = ACTIONS(527),
+ [anon_sym_AMP] = ACTIONS(529),
+ [anon_sym_CARET] = ACTIONS(527),
+ [anon_sym_PIPE] = ACTIONS(529),
+ [anon_sym_PLUS] = ACTIONS(529),
+ [anon_sym_DASH] = ACTIONS(529),
+ [anon_sym_SLASH] = ACTIONS(529),
+ [anon_sym_PERCENT] = ACTIONS(527),
+ [anon_sym_STAR_STAR] = ACTIONS(527),
+ [anon_sym_LT_EQ] = ACTIONS(527),
+ [anon_sym_EQ_EQ] = ACTIONS(529),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(527),
+ [anon_sym_BANG_EQ] = ACTIONS(529),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(527),
+ [anon_sym_GT_EQ] = ACTIONS(527),
+ [anon_sym_QMARK_QMARK] = ACTIONS(527),
+ [anon_sym_instanceof] = ACTIONS(529),
+ [anon_sym_BANG] = ACTIONS(529),
+ [anon_sym_TILDE] = ACTIONS(527),
+ [anon_sym_typeof] = ACTIONS(529),
+ [anon_sym_void] = ACTIONS(529),
+ [anon_sym_delete] = ACTIONS(529),
+ [anon_sym_PLUS_PLUS] = ACTIONS(527),
+ [anon_sym_DASH_DASH] = ACTIONS(527),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(552),
- [sym_number] = ACTIONS(552),
- [sym_private_property_identifier] = ACTIONS(552),
- [sym_this] = ACTIONS(554),
- [sym_super] = ACTIONS(554),
- [sym_true] = ACTIONS(554),
- [sym_false] = ACTIONS(554),
- [sym_null] = ACTIONS(554),
- [sym_undefined] = ACTIONS(554),
- [anon_sym_AT] = ACTIONS(552),
- [anon_sym_static] = ACTIONS(554),
- [anon_sym_get] = ACTIONS(554),
- [anon_sym_set] = ACTIONS(554),
- [sym__automatic_semicolon] = ACTIONS(560),
- [sym__ternary_qmark] = ACTIONS(558),
+ [anon_sym_BQUOTE] = ACTIONS(527),
+ [sym_number] = ACTIONS(527),
+ [sym_private_property_identifier] = ACTIONS(527),
+ [sym_this] = ACTIONS(529),
+ [sym_super] = ACTIONS(529),
+ [sym_true] = ACTIONS(529),
+ [sym_false] = ACTIONS(529),
+ [sym_null] = ACTIONS(529),
+ [sym_undefined] = ACTIONS(529),
+ [anon_sym_AT] = ACTIONS(527),
+ [anon_sym_static] = ACTIONS(529),
+ [anon_sym_get] = ACTIONS(529),
+ [anon_sym_set] = ACTIONS(529),
+ [sym__automatic_semicolon] = ACTIONS(527),
+ [sym__ternary_qmark] = ACTIONS(527),
[sym_html_comment] = ACTIONS(5),
},
[68] = {
- [ts_builtin_sym_end] = ACTIONS(562),
- [sym_identifier] = ACTIONS(564),
- [anon_sym_export] = ACTIONS(564),
- [anon_sym_STAR] = ACTIONS(564),
- [anon_sym_default] = ACTIONS(564),
- [anon_sym_LBRACE] = ACTIONS(562),
- [anon_sym_COMMA] = ACTIONS(562),
- [anon_sym_RBRACE] = ACTIONS(562),
- [anon_sym_import] = ACTIONS(564),
- [anon_sym_with] = ACTIONS(564),
- [anon_sym_var] = ACTIONS(564),
- [anon_sym_let] = ACTIONS(564),
- [anon_sym_const] = ACTIONS(564),
- [anon_sym_else] = ACTIONS(564),
- [anon_sym_if] = ACTIONS(564),
- [anon_sym_switch] = ACTIONS(564),
- [anon_sym_for] = ACTIONS(564),
- [anon_sym_LPAREN] = ACTIONS(562),
- [anon_sym_SEMI] = ACTIONS(562),
- [anon_sym_await] = ACTIONS(564),
- [anon_sym_in] = ACTIONS(564),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(564),
- [anon_sym_try] = ACTIONS(564),
- [anon_sym_break] = ACTIONS(564),
- [anon_sym_continue] = ACTIONS(564),
- [anon_sym_debugger] = ACTIONS(564),
- [anon_sym_return] = ACTIONS(564),
- [anon_sym_throw] = ACTIONS(564),
- [anon_sym_case] = ACTIONS(564),
- [anon_sym_yield] = ACTIONS(564),
- [anon_sym_LBRACK] = ACTIONS(562),
- [sym_glimmer_opening_tag] = ACTIONS(562),
- [anon_sym_LT] = ACTIONS(564),
- [anon_sym_GT] = ACTIONS(564),
- [anon_sym_DOT] = ACTIONS(564),
- [anon_sym_DQUOTE] = ACTIONS(562),
- [anon_sym_SQUOTE] = ACTIONS(562),
- [anon_sym_class] = ACTIONS(564),
- [anon_sym_async] = ACTIONS(564),
- [anon_sym_function] = ACTIONS(564),
- [sym_optional_chain] = ACTIONS(562),
- [anon_sym_new] = ACTIONS(564),
- [anon_sym_AMP_AMP] = ACTIONS(562),
- [anon_sym_PIPE_PIPE] = ACTIONS(562),
- [anon_sym_GT_GT] = ACTIONS(564),
- [anon_sym_GT_GT_GT] = ACTIONS(562),
- [anon_sym_LT_LT] = ACTIONS(562),
- [anon_sym_AMP] = ACTIONS(564),
- [anon_sym_CARET] = ACTIONS(562),
- [anon_sym_PIPE] = ACTIONS(564),
- [anon_sym_PLUS] = ACTIONS(564),
- [anon_sym_DASH] = ACTIONS(564),
- [anon_sym_SLASH] = ACTIONS(564),
- [anon_sym_PERCENT] = ACTIONS(562),
- [anon_sym_STAR_STAR] = ACTIONS(562),
- [anon_sym_LT_EQ] = ACTIONS(562),
- [anon_sym_EQ_EQ] = ACTIONS(564),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(562),
- [anon_sym_BANG_EQ] = ACTIONS(564),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(562),
- [anon_sym_GT_EQ] = ACTIONS(562),
- [anon_sym_QMARK_QMARK] = ACTIONS(562),
- [anon_sym_instanceof] = ACTIONS(564),
- [anon_sym_BANG] = ACTIONS(564),
- [anon_sym_TILDE] = ACTIONS(562),
- [anon_sym_typeof] = ACTIONS(564),
- [anon_sym_void] = ACTIONS(564),
- [anon_sym_delete] = ACTIONS(564),
- [anon_sym_PLUS_PLUS] = ACTIONS(562),
- [anon_sym_DASH_DASH] = ACTIONS(562),
+ [ts_builtin_sym_end] = ACTIONS(531),
+ [sym_identifier] = ACTIONS(533),
+ [anon_sym_export] = ACTIONS(533),
+ [anon_sym_STAR] = ACTIONS(535),
+ [anon_sym_default] = ACTIONS(533),
+ [anon_sym_LBRACE] = ACTIONS(531),
+ [anon_sym_COMMA] = ACTIONS(537),
+ [anon_sym_RBRACE] = ACTIONS(531),
+ [anon_sym_import] = ACTIONS(533),
+ [anon_sym_with] = ACTIONS(533),
+ [anon_sym_var] = ACTIONS(533),
+ [anon_sym_let] = ACTIONS(533),
+ [anon_sym_const] = ACTIONS(533),
+ [anon_sym_else] = ACTIONS(533),
+ [anon_sym_if] = ACTIONS(533),
+ [anon_sym_switch] = ACTIONS(533),
+ [anon_sym_for] = ACTIONS(533),
+ [anon_sym_LPAREN] = ACTIONS(531),
+ [anon_sym_SEMI] = ACTIONS(531),
+ [anon_sym_await] = ACTIONS(533),
+ [anon_sym_in] = ACTIONS(535),
+ [anon_sym_while] = ACTIONS(533),
+ [anon_sym_do] = ACTIONS(533),
+ [anon_sym_try] = ACTIONS(533),
+ [anon_sym_break] = ACTIONS(533),
+ [anon_sym_continue] = ACTIONS(533),
+ [anon_sym_debugger] = ACTIONS(533),
+ [anon_sym_return] = ACTIONS(533),
+ [anon_sym_throw] = ACTIONS(533),
+ [anon_sym_case] = ACTIONS(533),
+ [anon_sym_yield] = ACTIONS(533),
+ [anon_sym_LBRACK] = ACTIONS(531),
+ [anon_sym_LT] = ACTIONS(533),
+ [anon_sym_GT] = ACTIONS(535),
+ [anon_sym_DOT] = ACTIONS(535),
+ [anon_sym_DQUOTE] = ACTIONS(531),
+ [anon_sym_SQUOTE] = ACTIONS(531),
+ [anon_sym_class] = ACTIONS(533),
+ [anon_sym_async] = ACTIONS(533),
+ [anon_sym_function] = ACTIONS(533),
+ [sym_optional_chain] = ACTIONS(537),
+ [anon_sym_new] = ACTIONS(533),
+ [anon_sym_AMP_AMP] = ACTIONS(537),
+ [anon_sym_PIPE_PIPE] = ACTIONS(537),
+ [anon_sym_GT_GT] = ACTIONS(535),
+ [anon_sym_GT_GT_GT] = ACTIONS(537),
+ [anon_sym_LT_LT] = ACTIONS(537),
+ [anon_sym_AMP] = ACTIONS(535),
+ [anon_sym_CARET] = ACTIONS(537),
+ [anon_sym_PIPE] = ACTIONS(535),
+ [anon_sym_PLUS] = ACTIONS(533),
+ [anon_sym_DASH] = ACTIONS(533),
+ [anon_sym_SLASH] = ACTIONS(533),
+ [anon_sym_PERCENT] = ACTIONS(537),
+ [anon_sym_STAR_STAR] = ACTIONS(537),
+ [anon_sym_LT_EQ] = ACTIONS(537),
+ [anon_sym_EQ_EQ] = ACTIONS(535),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(537),
+ [anon_sym_BANG_EQ] = ACTIONS(535),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(537),
+ [anon_sym_GT_EQ] = ACTIONS(537),
+ [anon_sym_QMARK_QMARK] = ACTIONS(537),
+ [anon_sym_instanceof] = ACTIONS(535),
+ [anon_sym_BANG] = ACTIONS(533),
+ [anon_sym_TILDE] = ACTIONS(531),
+ [anon_sym_typeof] = ACTIONS(533),
+ [anon_sym_void] = ACTIONS(533),
+ [anon_sym_delete] = ACTIONS(533),
+ [anon_sym_PLUS_PLUS] = ACTIONS(531),
+ [anon_sym_DASH_DASH] = ACTIONS(531),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(562),
- [sym_number] = ACTIONS(562),
- [sym_private_property_identifier] = ACTIONS(562),
- [sym_this] = ACTIONS(564),
- [sym_super] = ACTIONS(564),
- [sym_true] = ACTIONS(564),
- [sym_false] = ACTIONS(564),
- [sym_null] = ACTIONS(564),
- [sym_undefined] = ACTIONS(564),
- [anon_sym_AT] = ACTIONS(562),
- [anon_sym_static] = ACTIONS(564),
- [anon_sym_get] = ACTIONS(564),
- [anon_sym_set] = ACTIONS(564),
- [sym__automatic_semicolon] = ACTIONS(562),
- [sym__ternary_qmark] = ACTIONS(562),
+ [anon_sym_BQUOTE] = ACTIONS(531),
+ [sym_number] = ACTIONS(531),
+ [sym_private_property_identifier] = ACTIONS(531),
+ [sym_this] = ACTIONS(533),
+ [sym_super] = ACTIONS(533),
+ [sym_true] = ACTIONS(533),
+ [sym_false] = ACTIONS(533),
+ [sym_null] = ACTIONS(533),
+ [sym_undefined] = ACTIONS(533),
+ [anon_sym_AT] = ACTIONS(531),
+ [anon_sym_static] = ACTIONS(533),
+ [anon_sym_get] = ACTIONS(533),
+ [anon_sym_set] = ACTIONS(533),
+ [sym__automatic_semicolon] = ACTIONS(539),
+ [sym__ternary_qmark] = ACTIONS(537),
[sym_html_comment] = ACTIONS(5),
},
[69] = {
- [ts_builtin_sym_end] = ACTIONS(566),
- [sym_identifier] = ACTIONS(568),
- [anon_sym_export] = ACTIONS(568),
- [anon_sym_STAR] = ACTIONS(568),
- [anon_sym_default] = ACTIONS(568),
- [anon_sym_LBRACE] = ACTIONS(566),
- [anon_sym_COMMA] = ACTIONS(566),
- [anon_sym_RBRACE] = ACTIONS(566),
- [anon_sym_import] = ACTIONS(568),
- [anon_sym_with] = ACTIONS(568),
- [anon_sym_var] = ACTIONS(568),
- [anon_sym_let] = ACTIONS(568),
- [anon_sym_const] = ACTIONS(568),
- [anon_sym_else] = ACTIONS(568),
- [anon_sym_if] = ACTIONS(568),
- [anon_sym_switch] = ACTIONS(568),
- [anon_sym_for] = ACTIONS(568),
- [anon_sym_LPAREN] = ACTIONS(566),
- [anon_sym_SEMI] = ACTIONS(566),
- [anon_sym_await] = ACTIONS(568),
- [anon_sym_in] = ACTIONS(568),
- [anon_sym_while] = ACTIONS(568),
- [anon_sym_do] = ACTIONS(568),
- [anon_sym_try] = ACTIONS(568),
- [anon_sym_break] = ACTIONS(568),
- [anon_sym_continue] = ACTIONS(568),
- [anon_sym_debugger] = ACTIONS(568),
- [anon_sym_return] = ACTIONS(568),
- [anon_sym_throw] = ACTIONS(568),
- [anon_sym_case] = ACTIONS(568),
- [anon_sym_yield] = ACTIONS(568),
- [anon_sym_LBRACK] = ACTIONS(566),
- [sym_glimmer_opening_tag] = ACTIONS(566),
- [anon_sym_LT] = ACTIONS(568),
- [anon_sym_GT] = ACTIONS(568),
- [anon_sym_DOT] = ACTIONS(568),
- [anon_sym_DQUOTE] = ACTIONS(566),
- [anon_sym_SQUOTE] = ACTIONS(566),
- [anon_sym_class] = ACTIONS(568),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(568),
- [sym_optional_chain] = ACTIONS(566),
- [anon_sym_new] = ACTIONS(568),
- [anon_sym_AMP_AMP] = ACTIONS(566),
- [anon_sym_PIPE_PIPE] = ACTIONS(566),
- [anon_sym_GT_GT] = ACTIONS(568),
- [anon_sym_GT_GT_GT] = ACTIONS(566),
- [anon_sym_LT_LT] = ACTIONS(566),
- [anon_sym_AMP] = ACTIONS(568),
- [anon_sym_CARET] = ACTIONS(566),
- [anon_sym_PIPE] = ACTIONS(568),
- [anon_sym_PLUS] = ACTIONS(568),
- [anon_sym_DASH] = ACTIONS(568),
- [anon_sym_SLASH] = ACTIONS(568),
- [anon_sym_PERCENT] = ACTIONS(566),
- [anon_sym_STAR_STAR] = ACTIONS(566),
- [anon_sym_LT_EQ] = ACTIONS(566),
- [anon_sym_EQ_EQ] = ACTIONS(568),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(566),
- [anon_sym_BANG_EQ] = ACTIONS(568),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(566),
- [anon_sym_GT_EQ] = ACTIONS(566),
- [anon_sym_QMARK_QMARK] = ACTIONS(566),
- [anon_sym_instanceof] = ACTIONS(568),
- [anon_sym_BANG] = ACTIONS(568),
- [anon_sym_TILDE] = ACTIONS(566),
- [anon_sym_typeof] = ACTIONS(568),
- [anon_sym_void] = ACTIONS(568),
- [anon_sym_delete] = ACTIONS(568),
- [anon_sym_PLUS_PLUS] = ACTIONS(566),
- [anon_sym_DASH_DASH] = ACTIONS(566),
+ [ts_builtin_sym_end] = ACTIONS(541),
+ [sym_identifier] = ACTIONS(543),
+ [anon_sym_export] = ACTIONS(543),
+ [anon_sym_STAR] = ACTIONS(545),
+ [anon_sym_default] = ACTIONS(543),
+ [anon_sym_LBRACE] = ACTIONS(541),
+ [anon_sym_COMMA] = ACTIONS(547),
+ [anon_sym_RBRACE] = ACTIONS(541),
+ [anon_sym_import] = ACTIONS(543),
+ [anon_sym_with] = ACTIONS(543),
+ [anon_sym_var] = ACTIONS(543),
+ [anon_sym_let] = ACTIONS(543),
+ [anon_sym_const] = ACTIONS(543),
+ [anon_sym_else] = ACTIONS(543),
+ [anon_sym_if] = ACTIONS(543),
+ [anon_sym_switch] = ACTIONS(543),
+ [anon_sym_for] = ACTIONS(543),
+ [anon_sym_LPAREN] = ACTIONS(541),
+ [anon_sym_SEMI] = ACTIONS(541),
+ [anon_sym_await] = ACTIONS(543),
+ [anon_sym_in] = ACTIONS(545),
+ [anon_sym_while] = ACTIONS(543),
+ [anon_sym_do] = ACTIONS(543),
+ [anon_sym_try] = ACTIONS(543),
+ [anon_sym_break] = ACTIONS(543),
+ [anon_sym_continue] = ACTIONS(543),
+ [anon_sym_debugger] = ACTIONS(543),
+ [anon_sym_return] = ACTIONS(543),
+ [anon_sym_throw] = ACTIONS(543),
+ [anon_sym_case] = ACTIONS(543),
+ [anon_sym_yield] = ACTIONS(543),
+ [anon_sym_LBRACK] = ACTIONS(541),
+ [anon_sym_LT] = ACTIONS(543),
+ [anon_sym_GT] = ACTIONS(545),
+ [anon_sym_DOT] = ACTIONS(545),
+ [anon_sym_DQUOTE] = ACTIONS(541),
+ [anon_sym_SQUOTE] = ACTIONS(541),
+ [anon_sym_class] = ACTIONS(543),
+ [anon_sym_async] = ACTIONS(543),
+ [anon_sym_function] = ACTIONS(543),
+ [sym_optional_chain] = ACTIONS(547),
+ [anon_sym_new] = ACTIONS(543),
+ [anon_sym_AMP_AMP] = ACTIONS(547),
+ [anon_sym_PIPE_PIPE] = ACTIONS(547),
+ [anon_sym_GT_GT] = ACTIONS(545),
+ [anon_sym_GT_GT_GT] = ACTIONS(547),
+ [anon_sym_LT_LT] = ACTIONS(547),
+ [anon_sym_AMP] = ACTIONS(545),
+ [anon_sym_CARET] = ACTIONS(547),
+ [anon_sym_PIPE] = ACTIONS(545),
+ [anon_sym_PLUS] = ACTIONS(543),
+ [anon_sym_DASH] = ACTIONS(543),
+ [anon_sym_SLASH] = ACTIONS(543),
+ [anon_sym_PERCENT] = ACTIONS(547),
+ [anon_sym_STAR_STAR] = ACTIONS(547),
+ [anon_sym_LT_EQ] = ACTIONS(547),
+ [anon_sym_EQ_EQ] = ACTIONS(545),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(547),
+ [anon_sym_BANG_EQ] = ACTIONS(545),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(547),
+ [anon_sym_GT_EQ] = ACTIONS(547),
+ [anon_sym_QMARK_QMARK] = ACTIONS(547),
+ [anon_sym_instanceof] = ACTIONS(545),
+ [anon_sym_BANG] = ACTIONS(543),
+ [anon_sym_TILDE] = ACTIONS(541),
+ [anon_sym_typeof] = ACTIONS(543),
+ [anon_sym_void] = ACTIONS(543),
+ [anon_sym_delete] = ACTIONS(543),
+ [anon_sym_PLUS_PLUS] = ACTIONS(541),
+ [anon_sym_DASH_DASH] = ACTIONS(541),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(566),
- [sym_number] = ACTIONS(566),
- [sym_private_property_identifier] = ACTIONS(566),
- [sym_this] = ACTIONS(568),
- [sym_super] = ACTIONS(568),
- [sym_true] = ACTIONS(568),
- [sym_false] = ACTIONS(568),
- [sym_null] = ACTIONS(568),
- [sym_undefined] = ACTIONS(568),
- [anon_sym_AT] = ACTIONS(566),
- [anon_sym_static] = ACTIONS(568),
- [anon_sym_get] = ACTIONS(568),
- [anon_sym_set] = ACTIONS(568),
- [sym__automatic_semicolon] = ACTIONS(566),
- [sym__ternary_qmark] = ACTIONS(566),
+ [anon_sym_BQUOTE] = ACTIONS(541),
+ [sym_number] = ACTIONS(541),
+ [sym_private_property_identifier] = ACTIONS(541),
+ [sym_this] = ACTIONS(543),
+ [sym_super] = ACTIONS(543),
+ [sym_true] = ACTIONS(543),
+ [sym_false] = ACTIONS(543),
+ [sym_null] = ACTIONS(543),
+ [sym_undefined] = ACTIONS(543),
+ [anon_sym_AT] = ACTIONS(541),
+ [anon_sym_static] = ACTIONS(543),
+ [anon_sym_get] = ACTIONS(543),
+ [anon_sym_set] = ACTIONS(543),
+ [sym__automatic_semicolon] = ACTIONS(549),
+ [sym__ternary_qmark] = ACTIONS(547),
[sym_html_comment] = ACTIONS(5),
},
[70] = {
- [ts_builtin_sym_end] = ACTIONS(570),
- [sym_identifier] = ACTIONS(572),
- [anon_sym_export] = ACTIONS(572),
- [anon_sym_STAR] = ACTIONS(572),
- [anon_sym_default] = ACTIONS(572),
- [anon_sym_LBRACE] = ACTIONS(570),
- [anon_sym_COMMA] = ACTIONS(570),
- [anon_sym_RBRACE] = ACTIONS(570),
- [anon_sym_import] = ACTIONS(572),
- [anon_sym_with] = ACTIONS(572),
- [anon_sym_var] = ACTIONS(572),
- [anon_sym_let] = ACTIONS(572),
- [anon_sym_const] = ACTIONS(572),
- [anon_sym_else] = ACTIONS(572),
- [anon_sym_if] = ACTIONS(572),
- [anon_sym_switch] = ACTIONS(572),
- [anon_sym_for] = ACTIONS(572),
- [anon_sym_LPAREN] = ACTIONS(570),
- [anon_sym_SEMI] = ACTIONS(570),
- [anon_sym_await] = ACTIONS(572),
- [anon_sym_in] = ACTIONS(572),
- [anon_sym_while] = ACTIONS(572),
- [anon_sym_do] = ACTIONS(572),
- [anon_sym_try] = ACTIONS(572),
- [anon_sym_break] = ACTIONS(572),
- [anon_sym_continue] = ACTIONS(572),
- [anon_sym_debugger] = ACTIONS(572),
- [anon_sym_return] = ACTIONS(572),
- [anon_sym_throw] = ACTIONS(572),
- [anon_sym_case] = ACTIONS(572),
- [anon_sym_yield] = ACTIONS(572),
- [anon_sym_LBRACK] = ACTIONS(570),
- [sym_glimmer_opening_tag] = ACTIONS(570),
- [anon_sym_LT] = ACTIONS(572),
- [anon_sym_GT] = ACTIONS(572),
- [anon_sym_DOT] = ACTIONS(572),
- [anon_sym_DQUOTE] = ACTIONS(570),
- [anon_sym_SQUOTE] = ACTIONS(570),
- [anon_sym_class] = ACTIONS(572),
- [anon_sym_async] = ACTIONS(572),
- [anon_sym_function] = ACTIONS(572),
- [sym_optional_chain] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_AMP_AMP] = ACTIONS(570),
- [anon_sym_PIPE_PIPE] = ACTIONS(570),
- [anon_sym_GT_GT] = ACTIONS(572),
- [anon_sym_GT_GT_GT] = ACTIONS(570),
- [anon_sym_LT_LT] = ACTIONS(570),
- [anon_sym_AMP] = ACTIONS(572),
- [anon_sym_CARET] = ACTIONS(570),
- [anon_sym_PIPE] = ACTIONS(572),
- [anon_sym_PLUS] = ACTIONS(572),
- [anon_sym_DASH] = ACTIONS(572),
- [anon_sym_SLASH] = ACTIONS(572),
- [anon_sym_PERCENT] = ACTIONS(570),
- [anon_sym_STAR_STAR] = ACTIONS(570),
- [anon_sym_LT_EQ] = ACTIONS(570),
- [anon_sym_EQ_EQ] = ACTIONS(572),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(570),
- [anon_sym_BANG_EQ] = ACTIONS(572),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(570),
- [anon_sym_GT_EQ] = ACTIONS(570),
- [anon_sym_QMARK_QMARK] = ACTIONS(570),
- [anon_sym_instanceof] = ACTIONS(572),
- [anon_sym_BANG] = ACTIONS(572),
- [anon_sym_TILDE] = ACTIONS(570),
- [anon_sym_typeof] = ACTIONS(572),
- [anon_sym_void] = ACTIONS(572),
- [anon_sym_delete] = ACTIONS(572),
- [anon_sym_PLUS_PLUS] = ACTIONS(570),
- [anon_sym_DASH_DASH] = ACTIONS(570),
+ [ts_builtin_sym_end] = ACTIONS(551),
+ [sym_identifier] = ACTIONS(553),
+ [anon_sym_export] = ACTIONS(553),
+ [anon_sym_STAR] = ACTIONS(555),
+ [anon_sym_default] = ACTIONS(553),
+ [anon_sym_LBRACE] = ACTIONS(551),
+ [anon_sym_COMMA] = ACTIONS(557),
+ [anon_sym_RBRACE] = ACTIONS(551),
+ [anon_sym_import] = ACTIONS(553),
+ [anon_sym_with] = ACTIONS(553),
+ [anon_sym_var] = ACTIONS(553),
+ [anon_sym_let] = ACTIONS(553),
+ [anon_sym_const] = ACTIONS(553),
+ [anon_sym_else] = ACTIONS(553),
+ [anon_sym_if] = ACTIONS(553),
+ [anon_sym_switch] = ACTIONS(553),
+ [anon_sym_for] = ACTIONS(553),
+ [anon_sym_LPAREN] = ACTIONS(551),
+ [anon_sym_SEMI] = ACTIONS(551),
+ [anon_sym_await] = ACTIONS(553),
+ [anon_sym_in] = ACTIONS(555),
+ [anon_sym_while] = ACTIONS(553),
+ [anon_sym_do] = ACTIONS(553),
+ [anon_sym_try] = ACTIONS(553),
+ [anon_sym_break] = ACTIONS(553),
+ [anon_sym_continue] = ACTIONS(553),
+ [anon_sym_debugger] = ACTIONS(553),
+ [anon_sym_return] = ACTIONS(553),
+ [anon_sym_throw] = ACTIONS(553),
+ [anon_sym_case] = ACTIONS(553),
+ [anon_sym_yield] = ACTIONS(553),
+ [anon_sym_LBRACK] = ACTIONS(551),
+ [anon_sym_LT] = ACTIONS(553),
+ [anon_sym_GT] = ACTIONS(555),
+ [anon_sym_DOT] = ACTIONS(555),
+ [anon_sym_DQUOTE] = ACTIONS(551),
+ [anon_sym_SQUOTE] = ACTIONS(551),
+ [anon_sym_class] = ACTIONS(553),
+ [anon_sym_async] = ACTIONS(553),
+ [anon_sym_function] = ACTIONS(553),
+ [sym_optional_chain] = ACTIONS(557),
+ [anon_sym_new] = ACTIONS(553),
+ [anon_sym_AMP_AMP] = ACTIONS(557),
+ [anon_sym_PIPE_PIPE] = ACTIONS(557),
+ [anon_sym_GT_GT] = ACTIONS(555),
+ [anon_sym_GT_GT_GT] = ACTIONS(557),
+ [anon_sym_LT_LT] = ACTIONS(557),
+ [anon_sym_AMP] = ACTIONS(555),
+ [anon_sym_CARET] = ACTIONS(557),
+ [anon_sym_PIPE] = ACTIONS(555),
+ [anon_sym_PLUS] = ACTIONS(553),
+ [anon_sym_DASH] = ACTIONS(553),
+ [anon_sym_SLASH] = ACTIONS(553),
+ [anon_sym_PERCENT] = ACTIONS(557),
+ [anon_sym_STAR_STAR] = ACTIONS(557),
+ [anon_sym_LT_EQ] = ACTIONS(557),
+ [anon_sym_EQ_EQ] = ACTIONS(555),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(557),
+ [anon_sym_BANG_EQ] = ACTIONS(555),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(557),
+ [anon_sym_GT_EQ] = ACTIONS(557),
+ [anon_sym_QMARK_QMARK] = ACTIONS(557),
+ [anon_sym_instanceof] = ACTIONS(555),
+ [anon_sym_BANG] = ACTIONS(553),
+ [anon_sym_TILDE] = ACTIONS(551),
+ [anon_sym_typeof] = ACTIONS(553),
+ [anon_sym_void] = ACTIONS(553),
+ [anon_sym_delete] = ACTIONS(553),
+ [anon_sym_PLUS_PLUS] = ACTIONS(551),
+ [anon_sym_DASH_DASH] = ACTIONS(551),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(570),
- [sym_number] = ACTIONS(570),
- [sym_private_property_identifier] = ACTIONS(570),
- [sym_this] = ACTIONS(572),
- [sym_super] = ACTIONS(572),
- [sym_true] = ACTIONS(572),
- [sym_false] = ACTIONS(572),
- [sym_null] = ACTIONS(572),
- [sym_undefined] = ACTIONS(572),
- [anon_sym_AT] = ACTIONS(570),
- [anon_sym_static] = ACTIONS(572),
- [anon_sym_get] = ACTIONS(572),
- [anon_sym_set] = ACTIONS(572),
- [sym__automatic_semicolon] = ACTIONS(574),
- [sym__ternary_qmark] = ACTIONS(570),
+ [anon_sym_BQUOTE] = ACTIONS(551),
+ [sym_number] = ACTIONS(551),
+ [sym_private_property_identifier] = ACTIONS(551),
+ [sym_this] = ACTIONS(553),
+ [sym_super] = ACTIONS(553),
+ [sym_true] = ACTIONS(553),
+ [sym_false] = ACTIONS(553),
+ [sym_null] = ACTIONS(553),
+ [sym_undefined] = ACTIONS(553),
+ [anon_sym_AT] = ACTIONS(551),
+ [anon_sym_static] = ACTIONS(553),
+ [anon_sym_get] = ACTIONS(553),
+ [anon_sym_set] = ACTIONS(553),
+ [sym__automatic_semicolon] = ACTIONS(559),
+ [sym__ternary_qmark] = ACTIONS(557),
[sym_html_comment] = ACTIONS(5),
},
[71] = {
- [ts_builtin_sym_end] = ACTIONS(570),
- [sym_identifier] = ACTIONS(572),
- [anon_sym_export] = ACTIONS(572),
- [anon_sym_STAR] = ACTIONS(572),
- [anon_sym_default] = ACTIONS(572),
- [anon_sym_LBRACE] = ACTIONS(570),
- [anon_sym_COMMA] = ACTIONS(570),
- [anon_sym_RBRACE] = ACTIONS(570),
- [anon_sym_import] = ACTIONS(572),
- [anon_sym_with] = ACTIONS(572),
- [anon_sym_var] = ACTIONS(572),
- [anon_sym_let] = ACTIONS(572),
- [anon_sym_const] = ACTIONS(572),
- [anon_sym_else] = ACTIONS(572),
- [anon_sym_if] = ACTIONS(572),
- [anon_sym_switch] = ACTIONS(572),
- [anon_sym_for] = ACTIONS(572),
- [anon_sym_LPAREN] = ACTIONS(570),
- [anon_sym_SEMI] = ACTIONS(570),
- [anon_sym_await] = ACTIONS(572),
- [anon_sym_in] = ACTIONS(572),
- [anon_sym_while] = ACTIONS(572),
- [anon_sym_do] = ACTIONS(572),
- [anon_sym_try] = ACTIONS(572),
- [anon_sym_break] = ACTIONS(572),
- [anon_sym_continue] = ACTIONS(572),
- [anon_sym_debugger] = ACTIONS(572),
- [anon_sym_return] = ACTIONS(572),
- [anon_sym_throw] = ACTIONS(572),
- [anon_sym_case] = ACTIONS(572),
- [anon_sym_yield] = ACTIONS(572),
- [anon_sym_LBRACK] = ACTIONS(570),
- [sym_glimmer_opening_tag] = ACTIONS(570),
- [anon_sym_LT] = ACTIONS(572),
- [anon_sym_GT] = ACTIONS(572),
- [anon_sym_DOT] = ACTIONS(572),
- [anon_sym_DQUOTE] = ACTIONS(570),
- [anon_sym_SQUOTE] = ACTIONS(570),
- [anon_sym_class] = ACTIONS(572),
- [anon_sym_async] = ACTIONS(572),
- [anon_sym_function] = ACTIONS(572),
- [sym_optional_chain] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_AMP_AMP] = ACTIONS(570),
- [anon_sym_PIPE_PIPE] = ACTIONS(570),
- [anon_sym_GT_GT] = ACTIONS(572),
- [anon_sym_GT_GT_GT] = ACTIONS(570),
- [anon_sym_LT_LT] = ACTIONS(570),
- [anon_sym_AMP] = ACTIONS(572),
- [anon_sym_CARET] = ACTIONS(570),
- [anon_sym_PIPE] = ACTIONS(572),
- [anon_sym_PLUS] = ACTIONS(572),
- [anon_sym_DASH] = ACTIONS(572),
- [anon_sym_SLASH] = ACTIONS(572),
- [anon_sym_PERCENT] = ACTIONS(570),
- [anon_sym_STAR_STAR] = ACTIONS(570),
- [anon_sym_LT_EQ] = ACTIONS(570),
- [anon_sym_EQ_EQ] = ACTIONS(572),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(570),
- [anon_sym_BANG_EQ] = ACTIONS(572),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(570),
- [anon_sym_GT_EQ] = ACTIONS(570),
- [anon_sym_QMARK_QMARK] = ACTIONS(570),
- [anon_sym_instanceof] = ACTIONS(572),
- [anon_sym_BANG] = ACTIONS(572),
- [anon_sym_TILDE] = ACTIONS(570),
- [anon_sym_typeof] = ACTIONS(572),
- [anon_sym_void] = ACTIONS(572),
- [anon_sym_delete] = ACTIONS(572),
- [anon_sym_PLUS_PLUS] = ACTIONS(570),
- [anon_sym_DASH_DASH] = ACTIONS(570),
+ [ts_builtin_sym_end] = ACTIONS(561),
+ [sym_identifier] = ACTIONS(563),
+ [anon_sym_export] = ACTIONS(563),
+ [anon_sym_STAR] = ACTIONS(565),
+ [anon_sym_default] = ACTIONS(563),
+ [anon_sym_LBRACE] = ACTIONS(561),
+ [anon_sym_COMMA] = ACTIONS(567),
+ [anon_sym_RBRACE] = ACTIONS(561),
+ [anon_sym_import] = ACTIONS(563),
+ [anon_sym_with] = ACTIONS(563),
+ [anon_sym_var] = ACTIONS(563),
+ [anon_sym_let] = ACTIONS(563),
+ [anon_sym_const] = ACTIONS(563),
+ [anon_sym_else] = ACTIONS(563),
+ [anon_sym_if] = ACTIONS(563),
+ [anon_sym_switch] = ACTIONS(563),
+ [anon_sym_for] = ACTIONS(563),
+ [anon_sym_LPAREN] = ACTIONS(561),
+ [anon_sym_SEMI] = ACTIONS(561),
+ [anon_sym_await] = ACTIONS(563),
+ [anon_sym_in] = ACTIONS(565),
+ [anon_sym_while] = ACTIONS(563),
+ [anon_sym_do] = ACTIONS(563),
+ [anon_sym_try] = ACTIONS(563),
+ [anon_sym_break] = ACTIONS(563),
+ [anon_sym_continue] = ACTIONS(563),
+ [anon_sym_debugger] = ACTIONS(563),
+ [anon_sym_return] = ACTIONS(563),
+ [anon_sym_throw] = ACTIONS(563),
+ [anon_sym_case] = ACTIONS(563),
+ [anon_sym_yield] = ACTIONS(563),
+ [anon_sym_LBRACK] = ACTIONS(561),
+ [anon_sym_LT] = ACTIONS(563),
+ [anon_sym_GT] = ACTIONS(565),
+ [anon_sym_DOT] = ACTIONS(565),
+ [anon_sym_DQUOTE] = ACTIONS(561),
+ [anon_sym_SQUOTE] = ACTIONS(561),
+ [anon_sym_class] = ACTIONS(563),
+ [anon_sym_async] = ACTIONS(563),
+ [anon_sym_function] = ACTIONS(563),
+ [sym_optional_chain] = ACTIONS(567),
+ [anon_sym_new] = ACTIONS(563),
+ [anon_sym_AMP_AMP] = ACTIONS(567),
+ [anon_sym_PIPE_PIPE] = ACTIONS(567),
+ [anon_sym_GT_GT] = ACTIONS(565),
+ [anon_sym_GT_GT_GT] = ACTIONS(567),
+ [anon_sym_LT_LT] = ACTIONS(567),
+ [anon_sym_AMP] = ACTIONS(565),
+ [anon_sym_CARET] = ACTIONS(567),
+ [anon_sym_PIPE] = ACTIONS(565),
+ [anon_sym_PLUS] = ACTIONS(563),
+ [anon_sym_DASH] = ACTIONS(563),
+ [anon_sym_SLASH] = ACTIONS(563),
+ [anon_sym_PERCENT] = ACTIONS(567),
+ [anon_sym_STAR_STAR] = ACTIONS(567),
+ [anon_sym_LT_EQ] = ACTIONS(567),
+ [anon_sym_EQ_EQ] = ACTIONS(565),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(567),
+ [anon_sym_BANG_EQ] = ACTIONS(565),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(567),
+ [anon_sym_GT_EQ] = ACTIONS(567),
+ [anon_sym_QMARK_QMARK] = ACTIONS(567),
+ [anon_sym_instanceof] = ACTIONS(565),
+ [anon_sym_BANG] = ACTIONS(563),
+ [anon_sym_TILDE] = ACTIONS(561),
+ [anon_sym_typeof] = ACTIONS(563),
+ [anon_sym_void] = ACTIONS(563),
+ [anon_sym_delete] = ACTIONS(563),
+ [anon_sym_PLUS_PLUS] = ACTIONS(561),
+ [anon_sym_DASH_DASH] = ACTIONS(561),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(570),
- [sym_number] = ACTIONS(570),
- [sym_private_property_identifier] = ACTIONS(570),
- [sym_this] = ACTIONS(572),
- [sym_super] = ACTIONS(572),
- [sym_true] = ACTIONS(572),
- [sym_false] = ACTIONS(572),
- [sym_null] = ACTIONS(572),
- [sym_undefined] = ACTIONS(572),
- [anon_sym_AT] = ACTIONS(570),
- [anon_sym_static] = ACTIONS(572),
- [anon_sym_get] = ACTIONS(572),
- [anon_sym_set] = ACTIONS(572),
- [sym__automatic_semicolon] = ACTIONS(570),
- [sym__ternary_qmark] = ACTIONS(570),
+ [anon_sym_BQUOTE] = ACTIONS(561),
+ [sym_number] = ACTIONS(561),
+ [sym_private_property_identifier] = ACTIONS(561),
+ [sym_this] = ACTIONS(563),
+ [sym_super] = ACTIONS(563),
+ [sym_true] = ACTIONS(563),
+ [sym_false] = ACTIONS(563),
+ [sym_null] = ACTIONS(563),
+ [sym_undefined] = ACTIONS(563),
+ [anon_sym_AT] = ACTIONS(561),
+ [anon_sym_static] = ACTIONS(563),
+ [anon_sym_get] = ACTIONS(563),
+ [anon_sym_set] = ACTIONS(563),
+ [sym__automatic_semicolon] = ACTIONS(569),
+ [sym__ternary_qmark] = ACTIONS(567),
[sym_html_comment] = ACTIONS(5),
},
[72] = {
- [ts_builtin_sym_end] = ACTIONS(508),
- [sym_identifier] = ACTIONS(510),
- [anon_sym_export] = ACTIONS(510),
- [anon_sym_STAR] = ACTIONS(510),
- [anon_sym_default] = ACTIONS(510),
- [anon_sym_LBRACE] = ACTIONS(508),
- [anon_sym_COMMA] = ACTIONS(508),
- [anon_sym_RBRACE] = ACTIONS(508),
- [anon_sym_import] = ACTIONS(510),
- [anon_sym_with] = ACTIONS(510),
- [anon_sym_var] = ACTIONS(510),
- [anon_sym_let] = ACTIONS(510),
- [anon_sym_const] = ACTIONS(510),
- [anon_sym_else] = ACTIONS(510),
- [anon_sym_if] = ACTIONS(510),
- [anon_sym_switch] = ACTIONS(510),
- [anon_sym_for] = ACTIONS(510),
- [anon_sym_LPAREN] = ACTIONS(508),
- [anon_sym_SEMI] = ACTIONS(508),
- [anon_sym_await] = ACTIONS(510),
- [anon_sym_in] = ACTIONS(510),
- [anon_sym_while] = ACTIONS(510),
- [anon_sym_do] = ACTIONS(510),
- [anon_sym_try] = ACTIONS(510),
- [anon_sym_break] = ACTIONS(510),
- [anon_sym_continue] = ACTIONS(510),
- [anon_sym_debugger] = ACTIONS(510),
- [anon_sym_return] = ACTIONS(510),
- [anon_sym_throw] = ACTIONS(510),
- [anon_sym_case] = ACTIONS(510),
- [anon_sym_yield] = ACTIONS(510),
- [anon_sym_LBRACK] = ACTIONS(508),
- [sym_glimmer_opening_tag] = ACTIONS(508),
- [anon_sym_LT] = ACTIONS(510),
- [anon_sym_GT] = ACTIONS(510),
- [anon_sym_DOT] = ACTIONS(510),
- [anon_sym_DQUOTE] = ACTIONS(508),
- [anon_sym_SQUOTE] = ACTIONS(508),
- [anon_sym_class] = ACTIONS(510),
- [anon_sym_async] = ACTIONS(510),
- [anon_sym_function] = ACTIONS(510),
- [sym_optional_chain] = ACTIONS(508),
- [anon_sym_new] = ACTIONS(510),
- [anon_sym_AMP_AMP] = ACTIONS(508),
- [anon_sym_PIPE_PIPE] = ACTIONS(508),
- [anon_sym_GT_GT] = ACTIONS(510),
- [anon_sym_GT_GT_GT] = ACTIONS(508),
- [anon_sym_LT_LT] = ACTIONS(508),
- [anon_sym_AMP] = ACTIONS(510),
- [anon_sym_CARET] = ACTIONS(508),
- [anon_sym_PIPE] = ACTIONS(510),
- [anon_sym_PLUS] = ACTIONS(510),
- [anon_sym_DASH] = ACTIONS(510),
- [anon_sym_SLASH] = ACTIONS(510),
- [anon_sym_PERCENT] = ACTIONS(508),
- [anon_sym_STAR_STAR] = ACTIONS(508),
- [anon_sym_LT_EQ] = ACTIONS(508),
- [anon_sym_EQ_EQ] = ACTIONS(510),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(508),
- [anon_sym_BANG_EQ] = ACTIONS(510),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(508),
- [anon_sym_GT_EQ] = ACTIONS(508),
- [anon_sym_QMARK_QMARK] = ACTIONS(508),
- [anon_sym_instanceof] = ACTIONS(510),
- [anon_sym_BANG] = ACTIONS(510),
- [anon_sym_TILDE] = ACTIONS(508),
- [anon_sym_typeof] = ACTIONS(510),
- [anon_sym_void] = ACTIONS(510),
- [anon_sym_delete] = ACTIONS(510),
- [anon_sym_PLUS_PLUS] = ACTIONS(508),
- [anon_sym_DASH_DASH] = ACTIONS(508),
+ [ts_builtin_sym_end] = ACTIONS(571),
+ [sym_identifier] = ACTIONS(573),
+ [anon_sym_export] = ACTIONS(573),
+ [anon_sym_STAR] = ACTIONS(575),
+ [anon_sym_default] = ACTIONS(573),
+ [anon_sym_LBRACE] = ACTIONS(571),
+ [anon_sym_COMMA] = ACTIONS(577),
+ [anon_sym_RBRACE] = ACTIONS(571),
+ [anon_sym_import] = ACTIONS(573),
+ [anon_sym_with] = ACTIONS(573),
+ [anon_sym_var] = ACTIONS(573),
+ [anon_sym_let] = ACTIONS(573),
+ [anon_sym_const] = ACTIONS(573),
+ [anon_sym_else] = ACTIONS(573),
+ [anon_sym_if] = ACTIONS(573),
+ [anon_sym_switch] = ACTIONS(573),
+ [anon_sym_for] = ACTIONS(573),
+ [anon_sym_LPAREN] = ACTIONS(571),
+ [anon_sym_SEMI] = ACTIONS(571),
+ [anon_sym_await] = ACTIONS(573),
+ [anon_sym_in] = ACTIONS(575),
+ [anon_sym_while] = ACTIONS(573),
+ [anon_sym_do] = ACTIONS(573),
+ [anon_sym_try] = ACTIONS(573),
+ [anon_sym_break] = ACTIONS(573),
+ [anon_sym_continue] = ACTIONS(573),
+ [anon_sym_debugger] = ACTIONS(573),
+ [anon_sym_return] = ACTIONS(573),
+ [anon_sym_throw] = ACTIONS(573),
+ [anon_sym_case] = ACTIONS(573),
+ [anon_sym_yield] = ACTIONS(573),
+ [anon_sym_LBRACK] = ACTIONS(571),
+ [anon_sym_LT] = ACTIONS(573),
+ [anon_sym_GT] = ACTIONS(575),
+ [anon_sym_DOT] = ACTIONS(575),
+ [anon_sym_DQUOTE] = ACTIONS(571),
+ [anon_sym_SQUOTE] = ACTIONS(571),
+ [anon_sym_class] = ACTIONS(573),
+ [anon_sym_async] = ACTIONS(573),
+ [anon_sym_function] = ACTIONS(573),
+ [sym_optional_chain] = ACTIONS(577),
+ [anon_sym_new] = ACTIONS(573),
+ [anon_sym_AMP_AMP] = ACTIONS(577),
+ [anon_sym_PIPE_PIPE] = ACTIONS(577),
+ [anon_sym_GT_GT] = ACTIONS(575),
+ [anon_sym_GT_GT_GT] = ACTIONS(577),
+ [anon_sym_LT_LT] = ACTIONS(577),
+ [anon_sym_AMP] = ACTIONS(575),
+ [anon_sym_CARET] = ACTIONS(577),
+ [anon_sym_PIPE] = ACTIONS(575),
+ [anon_sym_PLUS] = ACTIONS(573),
+ [anon_sym_DASH] = ACTIONS(573),
+ [anon_sym_SLASH] = ACTIONS(573),
+ [anon_sym_PERCENT] = ACTIONS(577),
+ [anon_sym_STAR_STAR] = ACTIONS(577),
+ [anon_sym_LT_EQ] = ACTIONS(577),
+ [anon_sym_EQ_EQ] = ACTIONS(575),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(577),
+ [anon_sym_BANG_EQ] = ACTIONS(575),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(577),
+ [anon_sym_GT_EQ] = ACTIONS(577),
+ [anon_sym_QMARK_QMARK] = ACTIONS(577),
+ [anon_sym_instanceof] = ACTIONS(575),
+ [anon_sym_BANG] = ACTIONS(573),
+ [anon_sym_TILDE] = ACTIONS(571),
+ [anon_sym_typeof] = ACTIONS(573),
+ [anon_sym_void] = ACTIONS(573),
+ [anon_sym_delete] = ACTIONS(573),
+ [anon_sym_PLUS_PLUS] = ACTIONS(571),
+ [anon_sym_DASH_DASH] = ACTIONS(571),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(508),
- [sym_number] = ACTIONS(508),
- [sym_private_property_identifier] = ACTIONS(508),
- [sym_this] = ACTIONS(510),
- [sym_super] = ACTIONS(510),
- [sym_true] = ACTIONS(510),
- [sym_false] = ACTIONS(510),
- [sym_null] = ACTIONS(510),
- [sym_undefined] = ACTIONS(510),
- [anon_sym_AT] = ACTIONS(508),
- [anon_sym_static] = ACTIONS(510),
- [anon_sym_get] = ACTIONS(510),
- [anon_sym_set] = ACTIONS(510),
- [sym__automatic_semicolon] = ACTIONS(576),
- [sym__ternary_qmark] = ACTIONS(508),
+ [anon_sym_BQUOTE] = ACTIONS(571),
+ [sym_number] = ACTIONS(571),
+ [sym_private_property_identifier] = ACTIONS(571),
+ [sym_this] = ACTIONS(573),
+ [sym_super] = ACTIONS(573),
+ [sym_true] = ACTIONS(573),
+ [sym_false] = ACTIONS(573),
+ [sym_null] = ACTIONS(573),
+ [sym_undefined] = ACTIONS(573),
+ [anon_sym_AT] = ACTIONS(571),
+ [anon_sym_static] = ACTIONS(573),
+ [anon_sym_get] = ACTIONS(573),
+ [anon_sym_set] = ACTIONS(573),
+ [sym__automatic_semicolon] = ACTIONS(579),
+ [sym__ternary_qmark] = ACTIONS(577),
[sym_html_comment] = ACTIONS(5),
},
[73] = {
- [ts_builtin_sym_end] = ACTIONS(578),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(580),
- [anon_sym_STAR] = ACTIONS(580),
- [anon_sym_default] = ACTIONS(580),
- [anon_sym_LBRACE] = ACTIONS(578),
- [anon_sym_COMMA] = ACTIONS(578),
- [anon_sym_RBRACE] = ACTIONS(578),
- [anon_sym_import] = ACTIONS(580),
- [anon_sym_with] = ACTIONS(580),
- [anon_sym_var] = ACTIONS(580),
- [anon_sym_let] = ACTIONS(580),
- [anon_sym_const] = ACTIONS(580),
- [anon_sym_else] = ACTIONS(580),
- [anon_sym_if] = ACTIONS(580),
- [anon_sym_switch] = ACTIONS(580),
- [anon_sym_for] = ACTIONS(580),
- [anon_sym_LPAREN] = ACTIONS(578),
- [anon_sym_SEMI] = ACTIONS(578),
- [anon_sym_await] = ACTIONS(580),
- [anon_sym_in] = ACTIONS(580),
- [anon_sym_while] = ACTIONS(580),
- [anon_sym_do] = ACTIONS(580),
- [anon_sym_try] = ACTIONS(580),
- [anon_sym_break] = ACTIONS(580),
- [anon_sym_continue] = ACTIONS(580),
- [anon_sym_debugger] = ACTIONS(580),
- [anon_sym_return] = ACTIONS(580),
- [anon_sym_throw] = ACTIONS(580),
- [anon_sym_case] = ACTIONS(580),
- [anon_sym_yield] = ACTIONS(580),
- [anon_sym_LBRACK] = ACTIONS(578),
- [sym_glimmer_opening_tag] = ACTIONS(578),
- [anon_sym_LT] = ACTIONS(580),
- [anon_sym_GT] = ACTIONS(580),
- [anon_sym_DOT] = ACTIONS(580),
- [anon_sym_DQUOTE] = ACTIONS(578),
- [anon_sym_SQUOTE] = ACTIONS(578),
- [anon_sym_class] = ACTIONS(580),
- [anon_sym_async] = ACTIONS(580),
- [anon_sym_function] = ACTIONS(580),
- [sym_optional_chain] = ACTIONS(578),
- [anon_sym_new] = ACTIONS(580),
- [anon_sym_AMP_AMP] = ACTIONS(578),
- [anon_sym_PIPE_PIPE] = ACTIONS(578),
- [anon_sym_GT_GT] = ACTIONS(580),
- [anon_sym_GT_GT_GT] = ACTIONS(578),
- [anon_sym_LT_LT] = ACTIONS(578),
- [anon_sym_AMP] = ACTIONS(580),
- [anon_sym_CARET] = ACTIONS(578),
- [anon_sym_PIPE] = ACTIONS(580),
- [anon_sym_PLUS] = ACTIONS(580),
- [anon_sym_DASH] = ACTIONS(580),
- [anon_sym_SLASH] = ACTIONS(580),
- [anon_sym_PERCENT] = ACTIONS(578),
- [anon_sym_STAR_STAR] = ACTIONS(578),
- [anon_sym_LT_EQ] = ACTIONS(578),
- [anon_sym_EQ_EQ] = ACTIONS(580),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(578),
- [anon_sym_BANG_EQ] = ACTIONS(580),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(578),
- [anon_sym_GT_EQ] = ACTIONS(578),
- [anon_sym_QMARK_QMARK] = ACTIONS(578),
- [anon_sym_instanceof] = ACTIONS(580),
- [anon_sym_BANG] = ACTIONS(580),
- [anon_sym_TILDE] = ACTIONS(578),
- [anon_sym_typeof] = ACTIONS(580),
- [anon_sym_void] = ACTIONS(580),
- [anon_sym_delete] = ACTIONS(580),
- [anon_sym_PLUS_PLUS] = ACTIONS(578),
- [anon_sym_DASH_DASH] = ACTIONS(578),
+ [ts_builtin_sym_end] = ACTIONS(581),
+ [sym_identifier] = ACTIONS(583),
+ [anon_sym_export] = ACTIONS(583),
+ [anon_sym_STAR] = ACTIONS(585),
+ [anon_sym_default] = ACTIONS(583),
+ [anon_sym_LBRACE] = ACTIONS(581),
+ [anon_sym_COMMA] = ACTIONS(587),
+ [anon_sym_RBRACE] = ACTIONS(581),
+ [anon_sym_import] = ACTIONS(583),
+ [anon_sym_with] = ACTIONS(583),
+ [anon_sym_var] = ACTIONS(583),
+ [anon_sym_let] = ACTIONS(583),
+ [anon_sym_const] = ACTIONS(583),
+ [anon_sym_else] = ACTIONS(583),
+ [anon_sym_if] = ACTIONS(583),
+ [anon_sym_switch] = ACTIONS(583),
+ [anon_sym_for] = ACTIONS(583),
+ [anon_sym_LPAREN] = ACTIONS(581),
+ [anon_sym_SEMI] = ACTIONS(581),
+ [anon_sym_await] = ACTIONS(583),
+ [anon_sym_in] = ACTIONS(585),
+ [anon_sym_while] = ACTIONS(583),
+ [anon_sym_do] = ACTIONS(583),
+ [anon_sym_try] = ACTIONS(583),
+ [anon_sym_break] = ACTIONS(583),
+ [anon_sym_continue] = ACTIONS(583),
+ [anon_sym_debugger] = ACTIONS(583),
+ [anon_sym_return] = ACTIONS(583),
+ [anon_sym_throw] = ACTIONS(583),
+ [anon_sym_case] = ACTIONS(583),
+ [anon_sym_yield] = ACTIONS(583),
+ [anon_sym_LBRACK] = ACTIONS(581),
+ [anon_sym_LT] = ACTIONS(583),
+ [anon_sym_GT] = ACTIONS(585),
+ [anon_sym_DOT] = ACTIONS(585),
+ [anon_sym_DQUOTE] = ACTIONS(581),
+ [anon_sym_SQUOTE] = ACTIONS(581),
+ [anon_sym_class] = ACTIONS(583),
+ [anon_sym_async] = ACTIONS(583),
+ [anon_sym_function] = ACTIONS(583),
+ [sym_optional_chain] = ACTIONS(587),
+ [anon_sym_new] = ACTIONS(583),
+ [anon_sym_AMP_AMP] = ACTIONS(587),
+ [anon_sym_PIPE_PIPE] = ACTIONS(587),
+ [anon_sym_GT_GT] = ACTIONS(585),
+ [anon_sym_GT_GT_GT] = ACTIONS(587),
+ [anon_sym_LT_LT] = ACTIONS(587),
+ [anon_sym_AMP] = ACTIONS(585),
+ [anon_sym_CARET] = ACTIONS(587),
+ [anon_sym_PIPE] = ACTIONS(585),
+ [anon_sym_PLUS] = ACTIONS(583),
+ [anon_sym_DASH] = ACTIONS(583),
+ [anon_sym_SLASH] = ACTIONS(583),
+ [anon_sym_PERCENT] = ACTIONS(587),
+ [anon_sym_STAR_STAR] = ACTIONS(587),
+ [anon_sym_LT_EQ] = ACTIONS(587),
+ [anon_sym_EQ_EQ] = ACTIONS(585),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(587),
+ [anon_sym_BANG_EQ] = ACTIONS(585),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(587),
+ [anon_sym_GT_EQ] = ACTIONS(587),
+ [anon_sym_QMARK_QMARK] = ACTIONS(587),
+ [anon_sym_instanceof] = ACTIONS(585),
+ [anon_sym_BANG] = ACTIONS(583),
+ [anon_sym_TILDE] = ACTIONS(581),
+ [anon_sym_typeof] = ACTIONS(583),
+ [anon_sym_void] = ACTIONS(583),
+ [anon_sym_delete] = ACTIONS(583),
+ [anon_sym_PLUS_PLUS] = ACTIONS(581),
+ [anon_sym_DASH_DASH] = ACTIONS(581),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(578),
- [sym_number] = ACTIONS(578),
- [sym_private_property_identifier] = ACTIONS(578),
- [sym_this] = ACTIONS(580),
- [sym_super] = ACTIONS(580),
- [sym_true] = ACTIONS(580),
- [sym_false] = ACTIONS(580),
- [sym_null] = ACTIONS(580),
- [sym_undefined] = ACTIONS(580),
- [anon_sym_AT] = ACTIONS(578),
- [anon_sym_static] = ACTIONS(580),
- [anon_sym_get] = ACTIONS(580),
- [anon_sym_set] = ACTIONS(580),
- [sym__automatic_semicolon] = ACTIONS(578),
- [sym__ternary_qmark] = ACTIONS(578),
+ [anon_sym_BQUOTE] = ACTIONS(581),
+ [sym_number] = ACTIONS(581),
+ [sym_private_property_identifier] = ACTIONS(581),
+ [sym_this] = ACTIONS(583),
+ [sym_super] = ACTIONS(583),
+ [sym_true] = ACTIONS(583),
+ [sym_false] = ACTIONS(583),
+ [sym_null] = ACTIONS(583),
+ [sym_undefined] = ACTIONS(583),
+ [anon_sym_AT] = ACTIONS(581),
+ [anon_sym_static] = ACTIONS(583),
+ [anon_sym_get] = ACTIONS(583),
+ [anon_sym_set] = ACTIONS(583),
+ [sym__automatic_semicolon] = ACTIONS(589),
+ [sym__ternary_qmark] = ACTIONS(587),
[sym_html_comment] = ACTIONS(5),
},
[74] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(790),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(483),
- [sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1382),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1384),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(524),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(582),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [ts_builtin_sym_end] = ACTIONS(591),
+ [sym_identifier] = ACTIONS(593),
+ [anon_sym_export] = ACTIONS(593),
+ [anon_sym_STAR] = ACTIONS(595),
+ [anon_sym_default] = ACTIONS(593),
+ [anon_sym_LBRACE] = ACTIONS(591),
+ [anon_sym_COMMA] = ACTIONS(597),
+ [anon_sym_RBRACE] = ACTIONS(591),
+ [anon_sym_import] = ACTIONS(593),
+ [anon_sym_with] = ACTIONS(593),
+ [anon_sym_var] = ACTIONS(593),
+ [anon_sym_let] = ACTIONS(593),
+ [anon_sym_const] = ACTIONS(593),
+ [anon_sym_else] = ACTIONS(593),
+ [anon_sym_if] = ACTIONS(593),
+ [anon_sym_switch] = ACTIONS(593),
+ [anon_sym_for] = ACTIONS(593),
+ [anon_sym_LPAREN] = ACTIONS(591),
+ [anon_sym_SEMI] = ACTIONS(591),
+ [anon_sym_await] = ACTIONS(593),
+ [anon_sym_in] = ACTIONS(595),
+ [anon_sym_while] = ACTIONS(593),
+ [anon_sym_do] = ACTIONS(593),
+ [anon_sym_try] = ACTIONS(593),
+ [anon_sym_break] = ACTIONS(593),
+ [anon_sym_continue] = ACTIONS(593),
+ [anon_sym_debugger] = ACTIONS(593),
+ [anon_sym_return] = ACTIONS(593),
+ [anon_sym_throw] = ACTIONS(593),
+ [anon_sym_case] = ACTIONS(593),
+ [anon_sym_yield] = ACTIONS(593),
+ [anon_sym_LBRACK] = ACTIONS(591),
+ [anon_sym_LT] = ACTIONS(593),
+ [anon_sym_GT] = ACTIONS(595),
+ [anon_sym_DOT] = ACTIONS(595),
+ [anon_sym_DQUOTE] = ACTIONS(591),
+ [anon_sym_SQUOTE] = ACTIONS(591),
+ [anon_sym_class] = ACTIONS(593),
+ [anon_sym_async] = ACTIONS(593),
+ [anon_sym_function] = ACTIONS(593),
+ [sym_optional_chain] = ACTIONS(597),
+ [anon_sym_new] = ACTIONS(593),
+ [anon_sym_AMP_AMP] = ACTIONS(597),
+ [anon_sym_PIPE_PIPE] = ACTIONS(597),
+ [anon_sym_GT_GT] = ACTIONS(595),
+ [anon_sym_GT_GT_GT] = ACTIONS(597),
+ [anon_sym_LT_LT] = ACTIONS(597),
+ [anon_sym_AMP] = ACTIONS(595),
+ [anon_sym_CARET] = ACTIONS(597),
+ [anon_sym_PIPE] = ACTIONS(595),
+ [anon_sym_PLUS] = ACTIONS(593),
+ [anon_sym_DASH] = ACTIONS(593),
+ [anon_sym_SLASH] = ACTIONS(593),
+ [anon_sym_PERCENT] = ACTIONS(597),
+ [anon_sym_STAR_STAR] = ACTIONS(597),
+ [anon_sym_LT_EQ] = ACTIONS(597),
+ [anon_sym_EQ_EQ] = ACTIONS(595),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(597),
+ [anon_sym_BANG_EQ] = ACTIONS(595),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(597),
+ [anon_sym_GT_EQ] = ACTIONS(597),
+ [anon_sym_QMARK_QMARK] = ACTIONS(597),
+ [anon_sym_instanceof] = ACTIONS(595),
+ [anon_sym_BANG] = ACTIONS(593),
+ [anon_sym_TILDE] = ACTIONS(591),
+ [anon_sym_typeof] = ACTIONS(593),
+ [anon_sym_void] = ACTIONS(593),
+ [anon_sym_delete] = ACTIONS(593),
+ [anon_sym_PLUS_PLUS] = ACTIONS(591),
+ [anon_sym_DASH_DASH] = ACTIONS(591),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(591),
+ [sym_number] = ACTIONS(591),
+ [sym_private_property_identifier] = ACTIONS(591),
+ [sym_this] = ACTIONS(593),
+ [sym_super] = ACTIONS(593),
+ [sym_true] = ACTIONS(593),
+ [sym_false] = ACTIONS(593),
+ [sym_null] = ACTIONS(593),
+ [sym_undefined] = ACTIONS(593),
+ [anon_sym_AT] = ACTIONS(591),
+ [anon_sym_static] = ACTIONS(593),
+ [anon_sym_get] = ACTIONS(593),
+ [anon_sym_set] = ACTIONS(593),
+ [sym__automatic_semicolon] = ACTIONS(599),
+ [sym__ternary_qmark] = ACTIONS(597),
[sym_html_comment] = ACTIONS(5),
},
[75] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(783),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(483),
- [sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1311),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1310),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(524),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(526),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [ts_builtin_sym_end] = ACTIONS(601),
+ [sym_identifier] = ACTIONS(603),
+ [anon_sym_export] = ACTIONS(603),
+ [anon_sym_STAR] = ACTIONS(605),
+ [anon_sym_default] = ACTIONS(603),
+ [anon_sym_LBRACE] = ACTIONS(601),
+ [anon_sym_COMMA] = ACTIONS(607),
+ [anon_sym_RBRACE] = ACTIONS(601),
+ [anon_sym_import] = ACTIONS(603),
+ [anon_sym_with] = ACTIONS(603),
+ [anon_sym_var] = ACTIONS(603),
+ [anon_sym_let] = ACTIONS(603),
+ [anon_sym_const] = ACTIONS(603),
+ [anon_sym_else] = ACTIONS(603),
+ [anon_sym_if] = ACTIONS(603),
+ [anon_sym_switch] = ACTIONS(603),
+ [anon_sym_for] = ACTIONS(603),
+ [anon_sym_LPAREN] = ACTIONS(601),
+ [anon_sym_SEMI] = ACTIONS(601),
+ [anon_sym_await] = ACTIONS(603),
+ [anon_sym_in] = ACTIONS(605),
+ [anon_sym_while] = ACTIONS(603),
+ [anon_sym_do] = ACTIONS(603),
+ [anon_sym_try] = ACTIONS(603),
+ [anon_sym_break] = ACTIONS(603),
+ [anon_sym_continue] = ACTIONS(603),
+ [anon_sym_debugger] = ACTIONS(603),
+ [anon_sym_return] = ACTIONS(603),
+ [anon_sym_throw] = ACTIONS(603),
+ [anon_sym_case] = ACTIONS(603),
+ [anon_sym_yield] = ACTIONS(603),
+ [anon_sym_LBRACK] = ACTIONS(601),
+ [anon_sym_LT] = ACTIONS(603),
+ [anon_sym_GT] = ACTIONS(605),
+ [anon_sym_DOT] = ACTIONS(605),
+ [anon_sym_DQUOTE] = ACTIONS(601),
+ [anon_sym_SQUOTE] = ACTIONS(601),
+ [anon_sym_class] = ACTIONS(603),
+ [anon_sym_async] = ACTIONS(603),
+ [anon_sym_function] = ACTIONS(603),
+ [sym_optional_chain] = ACTIONS(607),
+ [anon_sym_new] = ACTIONS(603),
+ [anon_sym_AMP_AMP] = ACTIONS(607),
+ [anon_sym_PIPE_PIPE] = ACTIONS(607),
+ [anon_sym_GT_GT] = ACTIONS(605),
+ [anon_sym_GT_GT_GT] = ACTIONS(607),
+ [anon_sym_LT_LT] = ACTIONS(607),
+ [anon_sym_AMP] = ACTIONS(605),
+ [anon_sym_CARET] = ACTIONS(607),
+ [anon_sym_PIPE] = ACTIONS(605),
+ [anon_sym_PLUS] = ACTIONS(603),
+ [anon_sym_DASH] = ACTIONS(603),
+ [anon_sym_SLASH] = ACTIONS(603),
+ [anon_sym_PERCENT] = ACTIONS(607),
+ [anon_sym_STAR_STAR] = ACTIONS(607),
+ [anon_sym_LT_EQ] = ACTIONS(607),
+ [anon_sym_EQ_EQ] = ACTIONS(605),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(607),
+ [anon_sym_BANG_EQ] = ACTIONS(605),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(607),
+ [anon_sym_GT_EQ] = ACTIONS(607),
+ [anon_sym_QMARK_QMARK] = ACTIONS(607),
+ [anon_sym_instanceof] = ACTIONS(605),
+ [anon_sym_BANG] = ACTIONS(603),
+ [anon_sym_TILDE] = ACTIONS(601),
+ [anon_sym_typeof] = ACTIONS(603),
+ [anon_sym_void] = ACTIONS(603),
+ [anon_sym_delete] = ACTIONS(603),
+ [anon_sym_PLUS_PLUS] = ACTIONS(601),
+ [anon_sym_DASH_DASH] = ACTIONS(601),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(601),
+ [sym_number] = ACTIONS(601),
+ [sym_private_property_identifier] = ACTIONS(601),
+ [sym_this] = ACTIONS(603),
+ [sym_super] = ACTIONS(603),
+ [sym_true] = ACTIONS(603),
+ [sym_false] = ACTIONS(603),
+ [sym_null] = ACTIONS(603),
+ [sym_undefined] = ACTIONS(603),
+ [anon_sym_AT] = ACTIONS(601),
+ [anon_sym_static] = ACTIONS(603),
+ [anon_sym_get] = ACTIONS(603),
+ [anon_sym_set] = ACTIONS(603),
+ [sym__automatic_semicolon] = ACTIONS(609),
+ [sym__ternary_qmark] = ACTIONS(607),
[sym_html_comment] = ACTIONS(5),
},
[76] = {
- [ts_builtin_sym_end] = ACTIONS(584),
- [sym_identifier] = ACTIONS(586),
- [anon_sym_export] = ACTIONS(586),
- [anon_sym_STAR] = ACTIONS(588),
- [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_SEMI] = ACTIONS(584),
- [anon_sym_await] = 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),
- [sym_glimmer_opening_tag] = ACTIONS(584),
- [anon_sym_LT] = ACTIONS(586),
- [anon_sym_GT] = ACTIONS(588),
- [anon_sym_DOT] = ACTIONS(588),
- [anon_sym_DQUOTE] = ACTIONS(584),
- [anon_sym_SQUOTE] = ACTIONS(584),
- [anon_sym_class] = ACTIONS(586),
- [anon_sym_async] = 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_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(767),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(483),
+ [sym_subscript_expression] = STATE(483),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1344),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1345),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(615),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(617),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[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),
- [anon_sym_static] = ACTIONS(586),
- [anon_sym_get] = ACTIONS(586),
- [anon_sym_set] = ACTIONS(586),
- [sym__automatic_semicolon] = ACTIONS(592),
- [sym__ternary_qmark] = ACTIONS(590),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[77] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(790),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(750),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(483),
[sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1382),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1384),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(524),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(594),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1326),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1328),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(615),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(625),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[78] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(790),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(767),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(483),
[sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1382),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1384),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(524),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(596),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1344),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1345),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(615),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(627),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[79] = {
- [ts_builtin_sym_end] = ACTIONS(598),
- [sym_identifier] = ACTIONS(600),
- [anon_sym_export] = ACTIONS(600),
- [anon_sym_STAR] = ACTIONS(602),
- [anon_sym_default] = ACTIONS(600),
- [anon_sym_LBRACE] = ACTIONS(598),
- [anon_sym_COMMA] = ACTIONS(604),
- [anon_sym_RBRACE] = ACTIONS(598),
- [anon_sym_import] = ACTIONS(600),
- [anon_sym_with] = ACTIONS(600),
- [anon_sym_var] = ACTIONS(600),
- [anon_sym_let] = ACTIONS(600),
- [anon_sym_const] = ACTIONS(600),
- [anon_sym_else] = ACTIONS(600),
- [anon_sym_if] = ACTIONS(600),
- [anon_sym_switch] = ACTIONS(600),
- [anon_sym_for] = ACTIONS(600),
- [anon_sym_LPAREN] = ACTIONS(598),
- [anon_sym_SEMI] = ACTIONS(598),
- [anon_sym_await] = ACTIONS(600),
- [anon_sym_in] = ACTIONS(602),
- [anon_sym_while] = ACTIONS(600),
- [anon_sym_do] = ACTIONS(600),
- [anon_sym_try] = ACTIONS(600),
- [anon_sym_break] = ACTIONS(600),
- [anon_sym_continue] = ACTIONS(600),
- [anon_sym_debugger] = ACTIONS(600),
- [anon_sym_return] = ACTIONS(600),
- [anon_sym_throw] = ACTIONS(600),
- [anon_sym_case] = ACTIONS(600),
- [anon_sym_yield] = ACTIONS(600),
- [anon_sym_LBRACK] = ACTIONS(598),
- [sym_glimmer_opening_tag] = ACTIONS(598),
- [anon_sym_LT] = ACTIONS(600),
- [anon_sym_GT] = ACTIONS(602),
- [anon_sym_DOT] = ACTIONS(602),
- [anon_sym_DQUOTE] = ACTIONS(598),
- [anon_sym_SQUOTE] = ACTIONS(598),
- [anon_sym_class] = ACTIONS(600),
- [anon_sym_async] = ACTIONS(600),
- [anon_sym_function] = ACTIONS(600),
- [sym_optional_chain] = ACTIONS(604),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_AMP_AMP] = ACTIONS(604),
- [anon_sym_PIPE_PIPE] = ACTIONS(604),
- [anon_sym_GT_GT] = ACTIONS(602),
- [anon_sym_GT_GT_GT] = ACTIONS(604),
- [anon_sym_LT_LT] = ACTIONS(604),
- [anon_sym_AMP] = ACTIONS(602),
- [anon_sym_CARET] = ACTIONS(604),
- [anon_sym_PIPE] = ACTIONS(602),
- [anon_sym_PLUS] = ACTIONS(600),
- [anon_sym_DASH] = ACTIONS(600),
- [anon_sym_SLASH] = ACTIONS(600),
- [anon_sym_PERCENT] = ACTIONS(604),
- [anon_sym_STAR_STAR] = ACTIONS(604),
- [anon_sym_LT_EQ] = ACTIONS(604),
- [anon_sym_EQ_EQ] = ACTIONS(602),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(604),
- [anon_sym_BANG_EQ] = ACTIONS(602),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(604),
- [anon_sym_GT_EQ] = ACTIONS(604),
- [anon_sym_QMARK_QMARK] = ACTIONS(604),
- [anon_sym_instanceof] = ACTIONS(602),
- [anon_sym_BANG] = ACTIONS(600),
- [anon_sym_TILDE] = ACTIONS(598),
- [anon_sym_typeof] = ACTIONS(600),
- [anon_sym_void] = ACTIONS(600),
- [anon_sym_delete] = ACTIONS(600),
- [anon_sym_PLUS_PLUS] = ACTIONS(598),
- [anon_sym_DASH_DASH] = ACTIONS(598),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(812),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(483),
+ [sym_subscript_expression] = STATE(483),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1326),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1328),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(615),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(625),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(598),
- [sym_number] = ACTIONS(598),
- [sym_private_property_identifier] = ACTIONS(598),
- [sym_this] = ACTIONS(600),
- [sym_super] = ACTIONS(600),
- [sym_true] = ACTIONS(600),
- [sym_false] = ACTIONS(600),
- [sym_null] = ACTIONS(600),
- [sym_undefined] = ACTIONS(600),
- [anon_sym_AT] = ACTIONS(598),
- [anon_sym_static] = ACTIONS(600),
- [anon_sym_get] = ACTIONS(600),
- [anon_sym_set] = ACTIONS(600),
- [sym__automatic_semicolon] = ACTIONS(606),
- [sym__ternary_qmark] = ACTIONS(604),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[80] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(790),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(767),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(483),
[sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1382),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1384),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(524),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(608),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1344),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1345),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(615),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(629),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[81] = {
- [ts_builtin_sym_end] = ACTIONS(610),
- [sym_identifier] = ACTIONS(612),
- [anon_sym_export] = ACTIONS(612),
- [anon_sym_STAR] = ACTIONS(614),
- [anon_sym_default] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(610),
- [anon_sym_COMMA] = ACTIONS(616),
- [anon_sym_RBRACE] = ACTIONS(610),
- [anon_sym_import] = ACTIONS(612),
- [anon_sym_with] = ACTIONS(612),
- [anon_sym_var] = ACTIONS(612),
- [anon_sym_let] = ACTIONS(612),
- [anon_sym_const] = ACTIONS(612),
- [anon_sym_else] = ACTIONS(612),
- [anon_sym_if] = ACTIONS(612),
- [anon_sym_switch] = ACTIONS(612),
- [anon_sym_for] = ACTIONS(612),
- [anon_sym_LPAREN] = ACTIONS(610),
- [anon_sym_SEMI] = ACTIONS(610),
- [anon_sym_await] = ACTIONS(612),
- [anon_sym_in] = ACTIONS(614),
- [anon_sym_while] = ACTIONS(612),
- [anon_sym_do] = ACTIONS(612),
- [anon_sym_try] = ACTIONS(612),
- [anon_sym_break] = ACTIONS(612),
- [anon_sym_continue] = ACTIONS(612),
- [anon_sym_debugger] = ACTIONS(612),
- [anon_sym_return] = ACTIONS(612),
- [anon_sym_throw] = ACTIONS(612),
- [anon_sym_case] = ACTIONS(612),
- [anon_sym_yield] = ACTIONS(612),
- [anon_sym_LBRACK] = ACTIONS(610),
- [sym_glimmer_opening_tag] = ACTIONS(610),
- [anon_sym_LT] = ACTIONS(612),
- [anon_sym_GT] = ACTIONS(614),
- [anon_sym_DOT] = ACTIONS(614),
- [anon_sym_DQUOTE] = ACTIONS(610),
- [anon_sym_SQUOTE] = ACTIONS(610),
- [anon_sym_class] = ACTIONS(612),
- [anon_sym_async] = ACTIONS(612),
- [anon_sym_function] = ACTIONS(612),
- [sym_optional_chain] = ACTIONS(616),
- [anon_sym_new] = ACTIONS(612),
- [anon_sym_AMP_AMP] = ACTIONS(616),
- [anon_sym_PIPE_PIPE] = ACTIONS(616),
- [anon_sym_GT_GT] = ACTIONS(614),
- [anon_sym_GT_GT_GT] = ACTIONS(616),
- [anon_sym_LT_LT] = ACTIONS(616),
- [anon_sym_AMP] = ACTIONS(614),
- [anon_sym_CARET] = ACTIONS(616),
- [anon_sym_PIPE] = ACTIONS(614),
- [anon_sym_PLUS] = ACTIONS(612),
- [anon_sym_DASH] = ACTIONS(612),
- [anon_sym_SLASH] = ACTIONS(612),
- [anon_sym_PERCENT] = ACTIONS(616),
- [anon_sym_STAR_STAR] = ACTIONS(616),
- [anon_sym_LT_EQ] = ACTIONS(616),
- [anon_sym_EQ_EQ] = ACTIONS(614),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(616),
- [anon_sym_BANG_EQ] = ACTIONS(614),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(616),
- [anon_sym_GT_EQ] = ACTIONS(616),
- [anon_sym_QMARK_QMARK] = ACTIONS(616),
- [anon_sym_instanceof] = ACTIONS(614),
- [anon_sym_BANG] = ACTIONS(612),
- [anon_sym_TILDE] = ACTIONS(610),
- [anon_sym_typeof] = ACTIONS(612),
- [anon_sym_void] = ACTIONS(612),
- [anon_sym_delete] = ACTIONS(612),
- [anon_sym_PLUS_PLUS] = ACTIONS(610),
- [anon_sym_DASH_DASH] = ACTIONS(610),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(767),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(483),
+ [sym_subscript_expression] = STATE(483),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1344),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1345),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(615),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(631),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(610),
- [sym_number] = ACTIONS(610),
- [sym_private_property_identifier] = ACTIONS(610),
- [sym_this] = ACTIONS(612),
- [sym_super] = ACTIONS(612),
- [sym_true] = ACTIONS(612),
- [sym_false] = ACTIONS(612),
- [sym_null] = ACTIONS(612),
- [sym_undefined] = ACTIONS(612),
- [anon_sym_AT] = ACTIONS(610),
- [anon_sym_static] = ACTIONS(612),
- [anon_sym_get] = ACTIONS(612),
- [anon_sym_set] = ACTIONS(612),
- [sym__automatic_semicolon] = ACTIONS(618),
- [sym__ternary_qmark] = ACTIONS(616),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[82] = {
- [ts_builtin_sym_end] = ACTIONS(620),
- [sym_identifier] = ACTIONS(622),
- [anon_sym_export] = ACTIONS(622),
- [anon_sym_STAR] = ACTIONS(624),
- [anon_sym_default] = ACTIONS(622),
- [anon_sym_LBRACE] = ACTIONS(620),
- [anon_sym_COMMA] = ACTIONS(626),
- [anon_sym_RBRACE] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(622),
- [anon_sym_with] = ACTIONS(622),
- [anon_sym_var] = ACTIONS(622),
- [anon_sym_let] = ACTIONS(622),
- [anon_sym_const] = ACTIONS(622),
- [anon_sym_else] = ACTIONS(622),
- [anon_sym_if] = ACTIONS(622),
- [anon_sym_switch] = ACTIONS(622),
- [anon_sym_for] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(620),
- [anon_sym_SEMI] = ACTIONS(620),
- [anon_sym_await] = ACTIONS(622),
- [anon_sym_in] = ACTIONS(624),
- [anon_sym_while] = ACTIONS(622),
- [anon_sym_do] = ACTIONS(622),
- [anon_sym_try] = ACTIONS(622),
- [anon_sym_break] = ACTIONS(622),
- [anon_sym_continue] = ACTIONS(622),
- [anon_sym_debugger] = ACTIONS(622),
- [anon_sym_return] = ACTIONS(622),
- [anon_sym_throw] = ACTIONS(622),
- [anon_sym_case] = ACTIONS(622),
- [anon_sym_yield] = ACTIONS(622),
- [anon_sym_LBRACK] = ACTIONS(620),
- [sym_glimmer_opening_tag] = ACTIONS(620),
- [anon_sym_LT] = ACTIONS(622),
- [anon_sym_GT] = ACTIONS(624),
- [anon_sym_DOT] = ACTIONS(624),
- [anon_sym_DQUOTE] = ACTIONS(620),
- [anon_sym_SQUOTE] = ACTIONS(620),
- [anon_sym_class] = ACTIONS(622),
- [anon_sym_async] = ACTIONS(622),
- [anon_sym_function] = ACTIONS(622),
- [sym_optional_chain] = ACTIONS(626),
- [anon_sym_new] = ACTIONS(622),
- [anon_sym_AMP_AMP] = ACTIONS(626),
- [anon_sym_PIPE_PIPE] = ACTIONS(626),
- [anon_sym_GT_GT] = ACTIONS(624),
- [anon_sym_GT_GT_GT] = ACTIONS(626),
- [anon_sym_LT_LT] = ACTIONS(626),
- [anon_sym_AMP] = ACTIONS(624),
- [anon_sym_CARET] = ACTIONS(626),
- [anon_sym_PIPE] = ACTIONS(624),
- [anon_sym_PLUS] = ACTIONS(622),
- [anon_sym_DASH] = ACTIONS(622),
- [anon_sym_SLASH] = ACTIONS(622),
- [anon_sym_PERCENT] = ACTIONS(626),
- [anon_sym_STAR_STAR] = ACTIONS(626),
- [anon_sym_LT_EQ] = ACTIONS(626),
- [anon_sym_EQ_EQ] = ACTIONS(624),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(626),
- [anon_sym_BANG_EQ] = ACTIONS(624),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(626),
- [anon_sym_GT_EQ] = ACTIONS(626),
- [anon_sym_QMARK_QMARK] = ACTIONS(626),
- [anon_sym_instanceof] = ACTIONS(624),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_TILDE] = ACTIONS(620),
- [anon_sym_typeof] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(622),
- [anon_sym_delete] = ACTIONS(622),
- [anon_sym_PLUS_PLUS] = ACTIONS(620),
- [anon_sym_DASH_DASH] = ACTIONS(620),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(620),
- [sym_number] = ACTIONS(620),
- [sym_private_property_identifier] = ACTIONS(620),
- [sym_this] = ACTIONS(622),
- [sym_super] = ACTIONS(622),
- [sym_true] = ACTIONS(622),
- [sym_false] = ACTIONS(622),
- [sym_null] = ACTIONS(622),
- [sym_undefined] = ACTIONS(622),
- [anon_sym_AT] = ACTIONS(620),
- [anon_sym_static] = ACTIONS(622),
- [anon_sym_get] = ACTIONS(622),
- [anon_sym_set] = ACTIONS(622),
- [sym__automatic_semicolon] = ACTIONS(628),
- [sym__ternary_qmark] = ACTIONS(626),
- [sym_html_comment] = ACTIONS(5),
- },
- [83] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(790),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(767),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(483),
[sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1382),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1384),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(524),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(630),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
- [sym_html_comment] = ACTIONS(5),
- },
- [84] = {
- [ts_builtin_sym_end] = ACTIONS(632),
- [sym_identifier] = ACTIONS(634),
- [anon_sym_export] = ACTIONS(634),
- [anon_sym_STAR] = ACTIONS(636),
- [anon_sym_default] = ACTIONS(634),
- [anon_sym_LBRACE] = ACTIONS(632),
- [anon_sym_COMMA] = ACTIONS(638),
- [anon_sym_RBRACE] = ACTIONS(632),
- [anon_sym_import] = ACTIONS(634),
- [anon_sym_with] = ACTIONS(634),
- [anon_sym_var] = ACTIONS(634),
- [anon_sym_let] = ACTIONS(634),
- [anon_sym_const] = ACTIONS(634),
- [anon_sym_else] = ACTIONS(634),
- [anon_sym_if] = ACTIONS(634),
- [anon_sym_switch] = ACTIONS(634),
- [anon_sym_for] = ACTIONS(634),
- [anon_sym_LPAREN] = ACTIONS(632),
- [anon_sym_SEMI] = ACTIONS(632),
- [anon_sym_await] = ACTIONS(634),
- [anon_sym_in] = ACTIONS(636),
- [anon_sym_while] = ACTIONS(634),
- [anon_sym_do] = ACTIONS(634),
- [anon_sym_try] = ACTIONS(634),
- [anon_sym_break] = ACTIONS(634),
- [anon_sym_continue] = ACTIONS(634),
- [anon_sym_debugger] = ACTIONS(634),
- [anon_sym_return] = ACTIONS(634),
- [anon_sym_throw] = ACTIONS(634),
- [anon_sym_case] = ACTIONS(634),
- [anon_sym_yield] = ACTIONS(634),
- [anon_sym_LBRACK] = ACTIONS(632),
- [sym_glimmer_opening_tag] = ACTIONS(632),
- [anon_sym_LT] = ACTIONS(634),
- [anon_sym_GT] = ACTIONS(636),
- [anon_sym_DOT] = ACTIONS(636),
- [anon_sym_DQUOTE] = ACTIONS(632),
- [anon_sym_SQUOTE] = ACTIONS(632),
- [anon_sym_class] = ACTIONS(634),
- [anon_sym_async] = ACTIONS(634),
- [anon_sym_function] = ACTIONS(634),
- [sym_optional_chain] = ACTIONS(638),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_AMP_AMP] = ACTIONS(638),
- [anon_sym_PIPE_PIPE] = ACTIONS(638),
- [anon_sym_GT_GT] = ACTIONS(636),
- [anon_sym_GT_GT_GT] = ACTIONS(638),
- [anon_sym_LT_LT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(636),
- [anon_sym_CARET] = ACTIONS(638),
- [anon_sym_PIPE] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(634),
- [anon_sym_DASH] = ACTIONS(634),
- [anon_sym_SLASH] = ACTIONS(634),
- [anon_sym_PERCENT] = ACTIONS(638),
- [anon_sym_STAR_STAR] = ACTIONS(638),
- [anon_sym_LT_EQ] = ACTIONS(638),
- [anon_sym_EQ_EQ] = ACTIONS(636),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(638),
- [anon_sym_BANG_EQ] = ACTIONS(636),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(638),
- [anon_sym_GT_EQ] = ACTIONS(638),
- [anon_sym_QMARK_QMARK] = ACTIONS(638),
- [anon_sym_instanceof] = ACTIONS(636),
- [anon_sym_BANG] = ACTIONS(634),
- [anon_sym_TILDE] = ACTIONS(632),
- [anon_sym_typeof] = ACTIONS(634),
- [anon_sym_void] = ACTIONS(634),
- [anon_sym_delete] = ACTIONS(634),
- [anon_sym_PLUS_PLUS] = ACTIONS(632),
- [anon_sym_DASH_DASH] = ACTIONS(632),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1344),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1345),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(615),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(633),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(632),
- [sym_number] = ACTIONS(632),
- [sym_private_property_identifier] = ACTIONS(632),
- [sym_this] = ACTIONS(634),
- [sym_super] = ACTIONS(634),
- [sym_true] = ACTIONS(634),
- [sym_false] = ACTIONS(634),
- [sym_null] = ACTIONS(634),
- [sym_undefined] = ACTIONS(634),
- [anon_sym_AT] = ACTIONS(632),
- [anon_sym_static] = ACTIONS(634),
- [anon_sym_get] = ACTIONS(634),
- [anon_sym_set] = ACTIONS(634),
- [sym__automatic_semicolon] = ACTIONS(640),
- [sym__ternary_qmark] = ACTIONS(638),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
- [85] = {
- [sym_declaration] = STATE(413),
- [sym_import] = STATE(1267),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(838),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [83] = {
+ [sym_declaration] = STATE(391),
+ [sym_import] = STATE(1232),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(831),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1245),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1237),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(642),
+ [anon_sym_let] = ACTIONS(635),
[anon_sym_const] = ACTIONS(25),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(644),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = ACTIONS(637),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
- [86] = {
- [sym_declaration] = STATE(382),
- [sym_import] = STATE(1267),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(833),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [84] = {
+ [sym_declaration] = STATE(401),
+ [sym_import] = STATE(1232),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(825),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1264),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1273),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(642),
+ [anon_sym_let] = ACTIONS(635),
[anon_sym_const] = ACTIONS(25),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(646),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(639),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
- [87] = {
- [sym_declaration] = STATE(382),
- [sym_import] = STATE(1267),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(833),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [85] = {
+ [sym_declaration] = STATE(401),
+ [sym_import] = STATE(1232),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(825),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1245),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1237),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(642),
+ [anon_sym_let] = ACTIONS(635),
[anon_sym_const] = ACTIONS(25),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(67),
- [anon_sym_async] = ACTIONS(644),
- [anon_sym_function] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(65),
+ [anon_sym_async] = ACTIONS(637),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
- [88] = {
- [sym_declaration] = STATE(413),
- [sym_import] = STATE(1267),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(838),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_class_declaration] = STATE(407),
- [sym_function_expression] = STATE(649),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function] = STATE(649),
- [sym_generator_function_declaration] = STATE(407),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [86] = {
+ [sym_declaration] = STATE(391),
+ [sym_import] = STATE(1232),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(831),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_expression] = STATE(677),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function] = STATE(677),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1264),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1273),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
[anon_sym_var] = ACTIONS(21),
- [anon_sym_let] = ACTIONS(642),
+ [anon_sym_let] = ACTIONS(635),
[anon_sym_const] = ACTIONS(25),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(348),
- [anon_sym_async] = ACTIONS(646),
- [anon_sym_function] = ACTIONS(352),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(339),
+ [anon_sym_async] = ACTIONS(639),
+ [anon_sym_function] = ACTIONS(343),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
- [89] = {
- [sym_import] = STATE(1279),
- [sym_variable_declaration] = STATE(113),
- [sym_lexical_declaration] = STATE(113),
- [sym_empty_statement] = STATE(113),
- [sym_parenthesized_expression] = STATE(495),
- [sym_expression] = STATE(795),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1393),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1393),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(495),
- [sym_subscript_expression] = STATE(495),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1393),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1739),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(648),
- [anon_sym_export] = ACTIONS(650),
- [anon_sym_LBRACE] = ACTIONS(652),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_var] = ACTIONS(654),
- [anon_sym_let] = ACTIONS(656),
- [anon_sym_const] = ACTIONS(658),
- [anon_sym_LPAREN] = ACTIONS(368),
+ [87] = {
+ [sym_import] = STATE(1272),
+ [sym_variable_declaration] = STATE(110),
+ [sym_lexical_declaration] = STATE(110),
+ [sym_empty_statement] = STATE(110),
+ [sym_parenthesized_expression] = STATE(489),
+ [sym_expression] = STATE(766),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1342),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1342),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(489),
+ [sym_subscript_expression] = STATE(489),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1342),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1717),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(641),
+ [anon_sym_export] = ACTIONS(643),
+ [anon_sym_LBRACE] = ACTIONS(645),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_var] = ACTIONS(647),
+ [anon_sym_let] = ACTIONS(649),
+ [anon_sym_const] = ACTIONS(651),
+ [anon_sym_LPAREN] = ACTIONS(359),
[anon_sym_SEMI] = ACTIONS(35),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(660),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(662),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(653),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(655),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(664),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(650),
- [anon_sym_get] = ACTIONS(650),
- [anon_sym_set] = ACTIONS(650),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(657),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(643),
+ [anon_sym_get] = ACTIONS(643),
+ [anon_sym_set] = ACTIONS(643),
[sym_html_comment] = ACTIONS(5),
},
- [90] = {
- [sym_import] = STATE(1279),
- [sym_variable_declaration] = STATE(114),
- [sym_lexical_declaration] = STATE(114),
- [sym_empty_statement] = STATE(114),
- [sym_parenthesized_expression] = STATE(495),
- [sym_expression] = STATE(829),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1393),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1393),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(495),
- [sym_subscript_expression] = STATE(495),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1393),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1743),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(648),
- [anon_sym_export] = ACTIONS(650),
- [anon_sym_LBRACE] = ACTIONS(652),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_var] = ACTIONS(654),
- [anon_sym_let] = ACTIONS(656),
- [anon_sym_const] = ACTIONS(658),
- [anon_sym_LPAREN] = ACTIONS(368),
+ [88] = {
+ [sym_import] = STATE(1272),
+ [sym_variable_declaration] = STATE(111),
+ [sym_lexical_declaration] = STATE(111),
+ [sym_empty_statement] = STATE(111),
+ [sym_parenthesized_expression] = STATE(489),
+ [sym_expression] = STATE(817),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1342),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1342),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(489),
+ [sym_subscript_expression] = STATE(489),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1342),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1719),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(641),
+ [anon_sym_export] = ACTIONS(643),
+ [anon_sym_LBRACE] = ACTIONS(645),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_var] = ACTIONS(647),
+ [anon_sym_let] = ACTIONS(649),
+ [anon_sym_const] = ACTIONS(651),
+ [anon_sym_LPAREN] = ACTIONS(359),
[anon_sym_SEMI] = ACTIONS(35),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(660),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(662),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(653),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(655),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(664),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(650),
- [anon_sym_get] = ACTIONS(650),
- [anon_sym_set] = ACTIONS(650),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(657),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(643),
+ [anon_sym_get] = ACTIONS(643),
+ [anon_sym_set] = ACTIONS(643),
[sym_html_comment] = ACTIONS(5),
},
- [91] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(818),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1452),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [89] = {
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_COMMA] = ACTIONS(665),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_RBRACK] = ACTIONS(669),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
+ [sym_comment] = ACTIONS(5),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
+ [sym_html_comment] = ACTIONS(5),
+ },
+ [90] = {
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(779),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1429),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(483),
[sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_spread_element] = STATE(1313),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1316),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_COMMA] = ACTIONS(666),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [anon_sym_RBRACK] = ACTIONS(666),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(113),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_spread_element] = STATE(1279),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1280),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_COMMA] = ACTIONS(677),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_RBRACK] = ACTIONS(677),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(111),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
+ [sym_comment] = ACTIONS(5),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
+ [sym_html_comment] = ACTIONS(5),
+ },
+ [91] = {
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(865),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1369),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(498),
+ [sym_subscript_expression] = STATE(498),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1207),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_pattern_repeat1] = STATE(1341),
+ [sym_identifier] = ACTIONS(680),
+ [anon_sym_export] = ACTIONS(682),
+ [anon_sym_LBRACE] = ACTIONS(684),
+ [anon_sym_COMMA] = ACTIONS(665),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(682),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(686),
+ [anon_sym_RBRACK] = ACTIONS(669),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(688),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(690),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(682),
+ [anon_sym_get] = ACTIONS(682),
+ [anon_sym_set] = ACTIONS(682),
[sym_html_comment] = ACTIONS(5),
},
[92] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_COMMA] = ACTIONS(675),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [anon_sym_RBRACK] = ACTIONS(679),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1343),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1203),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_pattern_repeat1] = STATE(1346),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_COMMA] = ACTIONS(665),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_RBRACK] = ACTIONS(692),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
[sym_html_comment] = ACTIONS(5),
},
[93] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1381),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1285),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_pattern_repeat1] = STATE(1291),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_COMMA] = ACTIONS(675),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [anon_sym_RBRACK] = ACTIONS(687),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(776),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1277),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(483),
+ [sym_subscript_expression] = STATE(483),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1617),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1243),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(694),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[94] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(871),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1392),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(496),
- [sym_subscript_expression] = STATE(496),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1218),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_pattern_repeat1] = STATE(1336),
- [sym_identifier] = ACTIONS(689),
- [anon_sym_export] = ACTIONS(691),
- [anon_sym_LBRACE] = ACTIONS(693),
- [anon_sym_COMMA] = ACTIONS(675),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(691),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(695),
- [anon_sym_RBRACK] = ACTIONS(679),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(697),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(753),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1277),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(483),
+ [sym_subscript_expression] = STATE(483),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1670),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1243),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(694),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(699),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(691),
- [anon_sym_get] = ACTIONS(691),
- [anon_sym_set] = ACTIONS(691),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[95] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1452),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1316),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_COMMA] = ACTIONS(701),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [anon_sym_RBRACK] = ACTIONS(701),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1429),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1280),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_COMMA] = ACTIONS(696),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_RBRACK] = ACTIONS(696),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
[sym_html_comment] = ACTIONS(5),
},
[96] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(794),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1359),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(483),
- [sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1687),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1235),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(703),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(754),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_spread_element] = STATE(1319),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1320),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_COMMA] = ACTIONS(698),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(700),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(702),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[97] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(800),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1359),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(483),
- [sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1719),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1235),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(703),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1277),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1243),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(694),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
[sym_html_comment] = ACTIONS(5),
},
[98] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(812),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_spread_element] = STATE(1315),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1317),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_COMMA] = ACTIONS(705),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(707),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(709),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1381),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1298),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(704),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
[sym_html_comment] = ACTIONS(5),
},
[99] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1359),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1235),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(703),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(769),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_spread_element] = STATE(1362),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1364),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_COMMA] = ACTIONS(698),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(706),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(702),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[100] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1630),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1350),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(711),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1381),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1298),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(708),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
[sym_html_comment] = ACTIONS(5),
},
[101] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(818),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_spread_element] = STATE(1313),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_COMMA] = ACTIONS(713),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(713),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [anon_sym_RBRACK] = ACTIONS(713),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(709),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(755),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_spread_element] = STATE(1303),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [aux_sym_array_repeat1] = STATE(1304),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_COMMA] = ACTIONS(698),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(710),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(702),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[102] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(763),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_spread_element] = STATE(1322),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1324),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_COMMA] = ACTIONS(705),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(715),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(709),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(779),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_spread_element] = STATE(1279),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_COMMA] = ACTIONS(712),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(712),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_RBRACK] = ACTIONS(712),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(702),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[103] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(804),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_spread_element] = STATE(1293),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [aux_sym_array_repeat1] = STATE(1294),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_COMMA] = ACTIONS(705),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(717),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(709),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(821),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1135),
+ [sym_assignment_pattern] = STATE(1454),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1135),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(483),
+ [sym_subscript_expression] = STATE(483),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1135),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [sym_pattern] = STATE(1282),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(611),
+ [anon_sym_export] = ACTIONS(613),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(613),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(621),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(623),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(613),
+ [anon_sym_get] = ACTIONS(613),
+ [anon_sym_set] = ACTIONS(613),
[sym_html_comment] = ACTIONS(5),
},
[104] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1630),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1350),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(719),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(771),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_spread_element] = STATE(1675),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1675),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_RBRACE] = ACTIONS(714),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(702),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[105] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(820),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_spread_element] = STATE(1745),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1745),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_RBRACE] = ACTIONS(721),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(709),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(797),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_spread_element] = STATE(1690),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1690),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_RBRACE] = ACTIONS(716),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(702),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[106] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(834),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1156),
- [sym_assignment_pattern] = STATE(1397),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1156),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(483),
- [sym_subscript_expression] = STATE(483),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1156),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [sym_pattern] = STATE(1385),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(520),
- [anon_sym_export] = ACTIONS(522),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(522),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(528),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1454),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1282),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(530),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(522),
- [anon_sym_get] = ACTIONS(522),
- [anon_sym_set] = ACTIONS(522),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
[sym_html_comment] = ACTIONS(5),
},
[107] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1397),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1385),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1175),
+ [sym_assignment_pattern] = STATE(1381),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1175),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(486),
+ [sym_subscript_expression] = STATE(486),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1175),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [sym_pattern] = STATE(1298),
+ [sym_rest_pattern] = STATE(1138),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(659),
+ [anon_sym_export] = ACTIONS(661),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(661),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(671),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_DOT_DOT_DOT] = ACTIONS(673),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(675),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(661),
+ [anon_sym_get] = ACTIONS(661),
+ [anon_sym_set] = ACTIONS(661),
[sym_html_comment] = ACTIONS(5),
},
[108] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(802),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_spread_element] = STATE(1710),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1710),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_RBRACE] = ACTIONS(723),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(709),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_empty_statement] = STATE(121),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(783),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1621),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_SEMI] = ACTIONS(35),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[109] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1210),
- [sym_assignment_pattern] = STATE(1630),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1210),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(487),
- [sym_subscript_expression] = STATE(487),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1210),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [sym_pattern] = STATE(1350),
- [sym_rest_pattern] = STATE(1160),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(669),
- [anon_sym_export] = ACTIONS(671),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(671),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(681),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(683),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(746),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1568),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_SEMI] = ACTIONS(718),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(685),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(671),
- [anon_sym_get] = ACTIONS(671),
- [anon_sym_set] = ACTIONS(671),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
+ [sym__automatic_semicolon] = ACTIONS(718),
[sym_html_comment] = ACTIONS(5),
},
[110] = {
- [sym_import] = STATE(1279),
- [sym_empty_statement] = STATE(120),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(762),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1671),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
+ [sym_import] = STATE(1272),
+ [sym_empty_statement] = STATE(113),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(778),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1639),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
[anon_sym_SEMI] = ACTIONS(35),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[111] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(755),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1605),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_SEMI] = ACTIONS(725),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_empty_statement] = STATE(120),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(803),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1638),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_SEMI] = ACTIONS(35),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
- [sym__automatic_semicolon] = ACTIONS(725),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[112] = {
- [sym_import] = STATE(1279),
- [sym_empty_statement] = STATE(115),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(796),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1663),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
+ [sym_import] = STATE(1272),
+ [sym_empty_statement] = STATE(117),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(805),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1647),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
[anon_sym_SEMI] = ACTIONS(35),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[113] = {
- [sym_import] = STATE(1279),
- [sym_empty_statement] = STATE(119),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(777),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(751),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
[sym_sequence_expression] = STATE(1657),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_SEMI] = ACTIONS(35),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(720),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[114] = {
- [sym_import] = STATE(1279),
- [sym_empty_statement] = STATE(118),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(787),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1662),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_SEMI] = ACTIONS(35),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(501),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1325),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1325),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(501),
+ [sym_subscript_expression] = STATE(501),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1325),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(722),
+ [anon_sym_export] = ACTIONS(724),
+ [anon_sym_LBRACE] = ACTIONS(645),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_var] = ACTIONS(726),
+ [anon_sym_let] = ACTIONS(728),
+ [anon_sym_const] = ACTIONS(730),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(653),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(732),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(734),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(724),
+ [anon_sym_get] = ACTIONS(724),
+ [anon_sym_set] = ACTIONS(724),
[sym_html_comment] = ACTIONS(5),
},
[115] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(793),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1731),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(727),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(788),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1669),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(736),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[116] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(772),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1724),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(729),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(811),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1652),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(738),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[117] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(503),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1335),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1335),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(503),
- [sym_subscript_expression] = STATE(503),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1335),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(731),
- [anon_sym_export] = ACTIONS(733),
- [anon_sym_LBRACE] = ACTIONS(652),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_var] = ACTIONS(735),
- [anon_sym_let] = ACTIONS(737),
- [anon_sym_const] = ACTIONS(739),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(660),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(741),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(789),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1673),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(740),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(743),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(733),
- [anon_sym_get] = ACTIONS(733),
- [anon_sym_set] = ACTIONS(733),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[118] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(809),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1670),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(745),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(807),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1658),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(742),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[119] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(828),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1646),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(747),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(791),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1678),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(744),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[120] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(765),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1688),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(749),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(784),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1651),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(746),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[121] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(767),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1639),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(751),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(777),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1645),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_RPAREN] = ACTIONS(748),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[122] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(764),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1685),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(753),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(630),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(714),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[123] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(784),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1721),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_RPAREN] = ACTIONS(755),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(532),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(782),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[124] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(561),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(605),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(757),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(543),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(787),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[125] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(573),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(548),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(775),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(810),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[126] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(821),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1699),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(558),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(814),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[127] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(781),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1675),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(560),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(786),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[128] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(561),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(506),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(507),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(764),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DOT] = ACTIONS(761),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[129] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(823),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1709),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(561),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(603),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(754),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[130] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(825),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1737),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(763),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1664),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[131] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(799),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1715),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(503),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(504),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DOT] = ACTIONS(756),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[132] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(668),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(670),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_namespace_export] = STATE(1424),
+ [sym_export_clause] = STATE(1271),
+ [sym_declaration] = STATE(397),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_decorator] = STATE(1006),
+ [aux_sym_export_statement_repeat1] = STATE(1220),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [anon_sym_STAR] = ACTIONS(758),
+ [anon_sym_default] = ACTIONS(760),
+ [anon_sym_LBRACE] = ACTIONS(762),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(766),
+ [anon_sym_var] = ACTIONS(768),
+ [anon_sym_let] = ACTIONS(770),
+ [anon_sym_const] = ACTIONS(770),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_class] = ACTIONS(782),
+ [anon_sym_async] = ACTIONS(784),
+ [anon_sym_function] = ACTIONS(786),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(764),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_AT] = ACTIONS(91),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[133] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(803),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1717),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(813),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1656),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[134] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(672),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(675),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_namespace_export] = STATE(1424),
+ [sym_export_clause] = STATE(1271),
+ [sym_declaration] = STATE(397),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_decorator] = STATE(1006),
+ [aux_sym_export_statement_repeat1] = STATE(1220),
+ [aux_sym_object_repeat1] = STATE(1310),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [anon_sym_STAR] = ACTIONS(758),
+ [anon_sym_default] = ACTIONS(760),
+ [anon_sym_LBRACE] = ACTIONS(762),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(792),
+ [anon_sym_var] = ACTIONS(768),
+ [anon_sym_let] = ACTIONS(770),
+ [anon_sym_const] = ACTIONS(770),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_class] = ACTIONS(782),
+ [anon_sym_async] = ACTIONS(784),
+ [anon_sym_function] = ACTIONS(786),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(764),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_AT] = ACTIONS(91),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[135] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(736),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(737),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(752),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1625),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[136] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(506),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(507),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(503),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(504),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(765),
- [anon_sym_export] = ACTIONS(767),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(767),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DOT] = ACTIONS(761),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(769),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(794),
+ [anon_sym_export] = ACTIONS(796),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(796),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DOT] = ACTIONS(756),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(798),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(767),
- [anon_sym_get] = ACTIONS(767),
- [anon_sym_set] = ACTIONS(767),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(796),
+ [anon_sym_get] = ACTIONS(796),
+ [anon_sym_set] = ACTIONS(796),
[sym_html_comment] = ACTIONS(5),
},
[137] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(713),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(718),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(772),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1627),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[138] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(677),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(704),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_namespace_export] = STATE(1424),
+ [sym_export_clause] = STATE(1271),
+ [sym_declaration] = STATE(397),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_decorator] = STATE(1006),
+ [aux_sym_export_statement_repeat1] = STATE(1220),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [anon_sym_STAR] = ACTIONS(758),
+ [anon_sym_default] = ACTIONS(760),
+ [anon_sym_LBRACE] = ACTIONS(762),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(800),
+ [anon_sym_var] = ACTIONS(768),
+ [anon_sym_let] = ACTIONS(770),
+ [anon_sym_const] = ACTIONS(770),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_class] = ACTIONS(782),
+ [anon_sym_async] = ACTIONS(784),
+ [anon_sym_function] = ACTIONS(786),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(764),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_AT] = ACTIONS(91),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[139] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(822),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1682),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(780),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1642),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[140] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(521),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(582),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(757),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(760),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1660),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[141] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(556),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(588),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(757),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(747),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_sequence_expression] = STATE(1570),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[142] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(576),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(601),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(757),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(729),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(730),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[143] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(788),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1712),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(461),
+ [sym_expression] = STATE(868),
+ [sym_primary_expression] = STATE(579),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(584),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(461),
+ [sym_subscript_expression] = STATE(461),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(802),
+ [anon_sym_export] = ACTIONS(804),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(804),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DOT] = ACTIONS(806),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(808),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(71),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(75),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(810),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(804),
+ [anon_sym_get] = ACTIONS(804),
+ [anon_sym_set] = ACTIONS(804),
[sym_html_comment] = ACTIONS(5),
},
[144] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(658),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(674),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(625),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(733),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[145] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(792),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1690),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(622),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(623),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[146] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(815),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1644),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(560),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(589),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(754),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[147] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(736),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(683),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(628),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(629),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[148] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(658),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(663),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(756),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1681),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[149] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(713),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(698),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(685),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(694),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[150] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(668),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(700),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(770),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1672),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[151] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(672),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(701),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(729),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(709),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[152] = {
- [sym_import] = STATE(1267),
- [sym_statement_block] = STATE(677),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(702),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(622),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(712),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(763),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[153] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(827),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1686),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(628),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(713),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[154] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(471),
- [sym_expression] = STATE(880),
- [sym_primary_expression] = STATE(603),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(604),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(471),
- [sym_subscript_expression] = STATE(471),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(771),
- [anon_sym_export] = ACTIONS(773),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(773),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DOT] = ACTIONS(775),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(777),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(774),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1615),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(779),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(773),
- [anon_sym_get] = ACTIONS(773),
- [anon_sym_set] = ACTIONS(773),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[155] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(776),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1730),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(773),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1694),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[156] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(789),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1696),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(630),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(631),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[157] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(521),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(782),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(768),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1695),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[158] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(556),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(830),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(765),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1650),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[159] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(573),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(608),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(757),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(532),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(582),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(754),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[160] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(471),
- [sym_expression] = STATE(880),
- [sym_primary_expression] = STATE(603),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(604),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(471),
- [sym_subscript_expression] = STATE(471),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(781),
- [anon_sym_export] = ACTIONS(783),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(783),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DOT] = ACTIONS(775),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(785),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(543),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(585),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(754),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(779),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(783),
- [anon_sym_get] = ACTIONS(783),
- [anon_sym_set] = ACTIONS(783),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[161] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(576),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(770),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(548),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(578),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(754),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[162] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(572),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(607),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(757),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(461),
+ [sym_expression] = STATE(868),
+ [sym_primary_expression] = STATE(579),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(584),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(461),
+ [sym_subscript_expression] = STATE(461),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(812),
+ [anon_sym_export] = ACTIONS(814),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(814),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DOT] = ACTIONS(806),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(816),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(810),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(814),
+ [anon_sym_get] = ACTIONS(814),
+ [anon_sym_set] = ACTIONS(814),
[sym_html_comment] = ACTIONS(5),
},
[163] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(561),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(771),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(809),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1687),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[164] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(521),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(868),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(685),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(686),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[165] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(556),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(850),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(775),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_sequence_expression] = STATE(1668),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[166] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(576),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(863),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(532),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(835),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[167] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(561),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(864),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(543),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(838),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[168] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(572),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(865),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(548),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(851),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[169] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(573),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(866),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(558),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(852),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[170] = {
- [sym_import] = STATE(1279),
- [sym_statement_block] = STATE(572),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(774),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(759),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(560),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(853),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[171] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(506),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(507),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(787),
- [anon_sym_export] = ACTIONS(789),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(789),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DOT] = ACTIONS(761),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(791),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(561),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(854),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(752),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(789),
- [anon_sym_get] = ACTIONS(789),
- [anon_sym_set] = ACTIONS(789),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[172] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(750),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_sequence_expression] = STATE(1609),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(503),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(504),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
[sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(818),
+ [anon_sym_export] = ACTIONS(820),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(820),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DOT] = ACTIONS(756),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(822),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(820),
+ [anon_sym_get] = ACTIONS(820),
+ [anon_sym_set] = ACTIONS(820),
[sym_html_comment] = ACTIONS(5),
},
[173] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(813),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_sequence_expression] = STATE(1742),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_statement_block] = STATE(558),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(587),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(754),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[174] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(626),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_statement_block] = STATE(625),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(690),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(750),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[175] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(757),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(673),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[176] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(839),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(862),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[177] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(841),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(858),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[178] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(879),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1159),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1159),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(485),
- [sym_subscript_expression] = STATE(485),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1159),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(793),
- [anon_sym_export] = ACTIONS(795),
- [anon_sym_LBRACE] = ACTIONS(673),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(795),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(677),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(797),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(666),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(799),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(795),
- [anon_sym_get] = ACTIONS(795),
- [anon_sym_set] = ACTIONS(795),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[179] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(644),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(609),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[180] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(834),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(821),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[181] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(740),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(611),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[182] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(873),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(684),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[183] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(511),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(687),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[184] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(508),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(859),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[185] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(581),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(691),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[186] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(586),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(758),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[187] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(587),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(697),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[188] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(589),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(710),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[189] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(590),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(711),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[190] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(621),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(715),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[191] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(591),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(716),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[192] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(592),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(717),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[193] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(593),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(719),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[194] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(594),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(720),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[195] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(595),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(721),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[196] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(613),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(722),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[197] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(596),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(737),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1219),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1219),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(493),
+ [sym_subscript_expression] = STATE(493),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1219),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(824),
+ [anon_sym_export] = ACTIONS(826),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(826),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(828),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(830),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(826),
+ [anon_sym_get] = ACTIONS(826),
+ [anon_sym_set] = ACTIONS(826),
[sym_html_comment] = ACTIONS(5),
},
[198] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(597),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(728),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[199] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(598),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(510),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[200] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(599),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(507),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[201] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(600),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(580),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[202] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(735),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(575),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[203] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(872),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(583),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[204] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(739),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(586),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[205] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(609),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(588),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[206] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(870),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(607),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[207] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(645),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(590),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[208] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(824),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(591),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[209] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(657),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(592),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[210] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(665),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(574),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[211] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(512),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(593),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[212] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(667),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(594),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[213] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(714),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(595),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[214] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(723),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(598),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[215] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(630),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(600),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[216] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(631),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(602),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[217] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(636),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(576),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[218] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(638),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(748),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[219] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(640),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(863),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
[sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[220] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(641),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(865),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[221] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(617),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(596),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[222] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(749),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(513),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[223] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(666),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(734),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
[anon_sym_LPAREN] = ACTIONS(33),
[anon_sym_await] = ACTIONS(37),
[anon_sym_yield] = ACTIONS(55),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[224] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(511),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(738),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[225] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(508),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(815),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[226] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(779),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(736),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[227] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(785),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(617),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[228] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(797),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(739),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[229] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(805),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(510),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[230] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(807),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(507),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[231] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(810),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(781),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[232] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(817),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(818),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[233] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(811),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(790),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[234] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(766),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(792),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[235] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(786),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(793),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[236] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(801),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(794),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[237] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(806),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(795),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[238] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(808),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(798),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[239] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(768),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(799),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[240] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(769),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(800),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[241] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(746),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(801),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[242] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(871),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(802),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[243] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(618),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(804),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[244] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(778),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(806),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[245] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(512),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(808),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[246] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(751),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(757),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[247] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(753),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(513),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[248] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(486),
- [sym_expression] = STATE(798),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1654),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1654),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(486),
- [sym_subscript_expression] = STATE(486),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1028),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1654),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1701),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(412),
- [anon_sym_export] = ACTIONS(414),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(414),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(37),
- [anon_sym_yield] = ACTIONS(55),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(424),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(73),
- [anon_sym_PLUS] = ACTIONS(75),
- [anon_sym_DASH] = ACTIONS(75),
- [anon_sym_SLASH] = ACTIONS(77),
- [anon_sym_BANG] = ACTIONS(79),
- [anon_sym_TILDE] = ACTIONS(79),
- [anon_sym_typeof] = ACTIONS(75),
- [anon_sym_void] = ACTIONS(75),
- [anon_sym_delete] = ACTIONS(75),
- [anon_sym_PLUS_PLUS] = ACTIONS(81),
- [anon_sym_DASH_DASH] = ACTIONS(81),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(867),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1159),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1159),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(485),
+ [sym_subscript_expression] = STATE(485),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1159),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(832),
+ [anon_sym_export] = ACTIONS(834),
+ [anon_sym_LBRACE] = ACTIONS(663),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(834),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(667),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(836),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(87),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(91),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(414),
- [anon_sym_get] = ACTIONS(414),
- [anon_sym_set] = ACTIONS(414),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(838),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(834),
+ [anon_sym_get] = ACTIONS(834),
+ [anon_sym_set] = ACTIONS(834),
[sym_html_comment] = ACTIONS(5),
},
[249] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(618),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(737),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[250] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(673),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(611),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[251] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(679),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(689),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[252] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(682),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(692),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[253] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(684),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(693),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[254] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(869),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(695),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[255] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(745),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(860),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[256] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(687),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(696),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[257] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(688),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(698),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[258] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(689),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(699),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[259] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(690),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(700),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[260] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(691),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(701),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[261] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(692),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(702),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[262] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(693),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(703),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[263] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(694),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(704),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[264] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(695),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(705),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[265] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(696),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(706),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[266] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(697),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(707),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[267] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(874),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(708),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[268] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(757),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1238),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1238),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(491),
- [sym_subscript_expression] = STATE(491),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1238),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(801),
- [anon_sym_export] = ACTIONS(803),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(803),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(805),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(861),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(807),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(803),
- [anon_sym_get] = ACTIONS(803),
- [anon_sym_set] = ACTIONS(803),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[269] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(705),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(832),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[270] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(875),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(443),
+ [sym_expression] = STATE(833),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1649),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1649),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(443),
+ [sym_subscript_expression] = STATE(443),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1019),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1649),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1666),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(347),
+ [anon_sym_export] = ACTIONS(349),
+ [anon_sym_LBRACE] = ACTIONS(353),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(349),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(361),
+ [anon_sym_yield] = ACTIONS(365),
+ [anon_sym_LBRACK] = ACTIONS(367),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(377),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(381),
+ [anon_sym_PLUS] = ACTIONS(383),
+ [anon_sym_DASH] = ACTIONS(383),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(387),
+ [anon_sym_TILDE] = ACTIONS(387),
+ [anon_sym_typeof] = ACTIONS(383),
+ [anon_sym_void] = ACTIONS(383),
+ [anon_sym_delete] = ACTIONS(383),
+ [anon_sym_PLUS_PLUS] = ACTIONS(389),
+ [anon_sym_DASH_DASH] = ACTIONS(389),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(395),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(399),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(349),
+ [anon_sym_get] = ACTIONS(349),
+ [anon_sym_set] = ACTIONS(349),
[sym_html_comment] = ACTIONS(5),
},
[271] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(626),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(718),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
[sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
[anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
[anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[272] = {
- [sym_import] = STATE(1267),
- [sym_parenthesized_expression] = STATE(484),
- [sym_expression] = STATE(617),
- [sym_primary_expression] = STATE(619),
- [sym_yield_expression] = STATE(685),
- [sym_object] = STATE(649),
- [sym_object_pattern] = STATE(1733),
- [sym_array] = STATE(649),
- [sym_array_pattern] = STATE(1733),
- [sym_glimmer_template] = STATE(685),
- [sym_jsx_element] = STATE(685),
- [sym_jsx_opening_element] = STATE(1059),
- [sym_jsx_self_closing_element] = STATE(685),
- [sym_class] = STATE(649),
- [sym_function_expression] = STATE(649),
- [sym_generator_function] = STATE(649),
- [sym_arrow_function] = STATE(649),
- [sym_call_expression] = STATE(649),
- [sym_new_expression] = STATE(615),
- [sym_await_expression] = STATE(685),
- [sym_member_expression] = STATE(484),
- [sym_subscript_expression] = STATE(484),
- [sym_assignment_expression] = STATE(685),
- [sym__augmented_assignment_lhs] = STATE(1034),
- [sym_augmented_assignment_expression] = STATE(685),
- [sym__destructuring_pattern] = STATE(1733),
- [sym_ternary_expression] = STATE(685),
- [sym_binary_expression] = STATE(685),
- [sym_unary_expression] = STATE(685),
- [sym_update_expression] = STATE(685),
- [sym_string] = STATE(649),
- [sym_template_string] = STATE(649),
- [sym_regex] = STATE(649),
- [sym_meta_property] = STATE(649),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1734),
- [aux_sym_export_statement_repeat1] = STATE(1261),
- [sym_identifier] = ACTIONS(428),
- [anon_sym_export] = ACTIONS(430),
- [anon_sym_LBRACE] = ACTIONS(418),
- [anon_sym_import] = ACTIONS(420),
- [anon_sym_let] = ACTIONS(430),
- [anon_sym_LPAREN] = ACTIONS(33),
- [anon_sym_await] = ACTIONS(434),
- [anon_sym_yield] = ACTIONS(436),
- [anon_sym_LBRACK] = ACTIONS(57),
- [sym_glimmer_opening_tag] = ACTIONS(59),
- [anon_sym_LT] = ACTIONS(61),
- [anon_sym_DQUOTE] = ACTIONS(63),
- [anon_sym_SQUOTE] = ACTIONS(65),
- [anon_sym_class] = ACTIONS(422),
- [anon_sym_async] = ACTIONS(438),
- [anon_sym_function] = ACTIONS(426),
- [anon_sym_new] = ACTIONS(440),
- [anon_sym_PLUS] = ACTIONS(442),
- [anon_sym_DASH] = ACTIONS(442),
- [anon_sym_SLASH] = ACTIONS(444),
- [anon_sym_BANG] = ACTIONS(446),
- [anon_sym_TILDE] = ACTIONS(446),
- [anon_sym_typeof] = ACTIONS(442),
- [anon_sym_void] = ACTIONS(442),
- [anon_sym_delete] = ACTIONS(442),
- [anon_sym_PLUS_PLUS] = ACTIONS(448),
- [anon_sym_DASH_DASH] = ACTIONS(448),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(857),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(83),
- [sym_number] = ACTIONS(85),
- [sym_private_property_identifier] = ACTIONS(450),
- [sym_this] = ACTIONS(89),
- [sym_super] = ACTIONS(89),
- [sym_true] = ACTIONS(89),
- [sym_false] = ACTIONS(89),
- [sym_null] = ACTIONS(89),
- [sym_undefined] = ACTIONS(452),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(430),
- [anon_sym_get] = ACTIONS(430),
- [anon_sym_set] = ACTIONS(430),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[273] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(445),
- [sym_expression] = STATE(754),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1691),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1691),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(445),
- [sym_subscript_expression] = STATE(445),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1032),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1691),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1652),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(356),
- [anon_sym_export] = ACTIONS(358),
- [anon_sym_LBRACE] = ACTIONS(362),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(358),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(370),
- [anon_sym_yield] = ACTIONS(374),
- [anon_sym_LBRACK] = ACTIONS(376),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(388),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(392),
- [anon_sym_PLUS] = ACTIONS(394),
- [anon_sym_DASH] = ACTIONS(394),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(398),
- [anon_sym_TILDE] = ACTIONS(398),
- [anon_sym_typeof] = ACTIONS(394),
- [anon_sym_void] = ACTIONS(394),
- [anon_sym_delete] = ACTIONS(394),
- [anon_sym_PLUS_PLUS] = ACTIONS(400),
- [anon_sym_DASH_DASH] = ACTIONS(400),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(617),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(406),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(410),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(358),
- [anon_sym_get] = ACTIONS(358),
- [anon_sym_set] = ACTIONS(358),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[274] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(511),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(487),
+ [sym_expression] = STATE(609),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1708),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1708),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(487),
+ [sym_subscript_expression] = STATE(487),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1018),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1708),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1709),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(419),
+ [anon_sym_export] = ACTIONS(421),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(421),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(425),
+ [anon_sym_yield] = ACTIONS(427),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(429),
+ [anon_sym_function] = ACTIONS(417),
+ [anon_sym_new] = ACTIONS(431),
+ [anon_sym_PLUS] = ACTIONS(433),
+ [anon_sym_DASH] = ACTIONS(433),
+ [anon_sym_SLASH] = ACTIONS(435),
+ [anon_sym_BANG] = ACTIONS(437),
+ [anon_sym_TILDE] = ACTIONS(437),
+ [anon_sym_typeof] = ACTIONS(433),
+ [anon_sym_void] = ACTIONS(433),
+ [anon_sym_delete] = ACTIONS(433),
+ [anon_sym_PLUS_PLUS] = ACTIONS(439),
+ [anon_sym_DASH_DASH] = ACTIONS(439),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(81),
+ [sym_number] = ACTIONS(83),
+ [sym_private_property_identifier] = ACTIONS(441),
+ [sym_this] = ACTIONS(87),
+ [sym_super] = ACTIONS(87),
+ [sym_true] = ACTIONS(87),
+ [sym_false] = ACTIONS(87),
+ [sym_null] = ACTIONS(87),
+ [sym_undefined] = ACTIONS(443),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(421),
+ [anon_sym_get] = ACTIONS(421),
+ [anon_sym_set] = ACTIONS(421),
[sym_html_comment] = ACTIONS(5),
},
[275] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(508),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1232),
+ [sym_parenthesized_expression] = STATE(481),
+ [sym_expression] = STATE(624),
+ [sym_primary_expression] = STATE(614),
+ [sym_yield_expression] = STATE(672),
+ [sym_object] = STATE(677),
+ [sym_object_pattern] = STATE(1644),
+ [sym_array] = STATE(677),
+ [sym_array_pattern] = STATE(1644),
+ [sym_jsx_element] = STATE(672),
+ [sym_jsx_opening_element] = STATE(1043),
+ [sym_jsx_self_closing_element] = STATE(672),
+ [sym_class] = STATE(677),
+ [sym_function_expression] = STATE(677),
+ [sym_generator_function] = STATE(677),
+ [sym_arrow_function] = STATE(677),
+ [sym_call_expression] = STATE(677),
+ [sym_new_expression] = STATE(615),
+ [sym_await_expression] = STATE(672),
+ [sym_member_expression] = STATE(481),
+ [sym_subscript_expression] = STATE(481),
+ [sym_assignment_expression] = STATE(672),
+ [sym__augmented_assignment_lhs] = STATE(1023),
+ [sym_augmented_assignment_expression] = STATE(672),
+ [sym__destructuring_pattern] = STATE(1644),
+ [sym_ternary_expression] = STATE(672),
+ [sym_binary_expression] = STATE(672),
+ [sym_unary_expression] = STATE(672),
+ [sym_update_expression] = STATE(672),
+ [sym_string] = STATE(677),
+ [sym_template_string] = STATE(677),
+ [sym_regex] = STATE(677),
+ [sym_meta_property] = STATE(677),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1623),
+ [aux_sym_export_statement_repeat1] = STATE(1204),
+ [sym_identifier] = ACTIONS(401),
+ [anon_sym_export] = ACTIONS(403),
+ [anon_sym_LBRACE] = ACTIONS(407),
+ [anon_sym_import] = ACTIONS(409),
+ [anon_sym_let] = ACTIONS(403),
+ [anon_sym_LPAREN] = ACTIONS(33),
+ [anon_sym_await] = ACTIONS(37),
+ [anon_sym_yield] = ACTIONS(55),
+ [anon_sym_LBRACK] = ACTIONS(57),
+ [anon_sym_LT] = ACTIONS(59),
+ [anon_sym_DQUOTE] = ACTIONS(61),
+ [anon_sym_SQUOTE] = ACTIONS(63),
+ [anon_sym_class] = ACTIONS(413),
+ [anon_sym_async] = ACTIONS(415),
+ [anon_sym_function] = ACTIONS(417),
+ [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(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [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),
+ [anon_sym_static] = ACTIONS(403),
+ [anon_sym_get] = ACTIONS(403),
+ [anon_sym_set] = ACTIONS(403),
[sym_html_comment] = ACTIONS(5),
},
[276] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(846),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(510),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[277] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(848),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(507),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[278] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(849),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(834),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[279] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(876),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(836),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[280] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(851),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(837),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[281] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(852),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(839),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[282] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(853),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(840),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[283] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(854),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(841),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[284] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(855),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(842),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[285] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(856),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(843),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[286] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(857),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(844),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[287] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(858),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(845),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[288] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(859),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(846),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[289] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(860),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(847),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[290] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(861),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(848),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[291] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(862),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(849),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[292] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(831),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(850),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[293] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(867),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(819),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[294] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(504),
- [sym_expression] = STATE(512),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1744),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1744),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(504),
- [sym_subscript_expression] = STATE(504),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1047),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1744),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1725),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(454),
- [anon_sym_export] = ACTIONS(456),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(456),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(462),
- [anon_sym_yield] = ACTIONS(464),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(468),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(470),
- [anon_sym_PLUS] = ACTIONS(472),
- [anon_sym_DASH] = ACTIONS(472),
- [anon_sym_SLASH] = ACTIONS(474),
- [anon_sym_BANG] = ACTIONS(476),
- [anon_sym_TILDE] = ACTIONS(476),
- [anon_sym_typeof] = ACTIONS(472),
- [anon_sym_void] = ACTIONS(472),
- [anon_sym_delete] = ACTIONS(472),
- [anon_sym_PLUS_PLUS] = ACTIONS(478),
- [anon_sym_DASH_DASH] = ACTIONS(478),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(855),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(480),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(482),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(456),
- [anon_sym_get] = ACTIONS(456),
- [anon_sym_set] = ACTIONS(456),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[295] = {
- [sym_import] = STATE(1279),
- [sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(877),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
- [sym_member_expression] = STATE(430),
- [sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(502),
+ [sym_expression] = STATE(513),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1720),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1720),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(502),
+ [sym_subscript_expression] = STATE(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1029),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1720),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1701),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(473),
+ [anon_sym_export] = ACTIONS(475),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(475),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(479),
+ [anon_sym_yield] = ACTIONS(481),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(483),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(485),
+ [anon_sym_PLUS] = ACTIONS(487),
+ [anon_sym_DASH] = ACTIONS(487),
+ [anon_sym_SLASH] = ACTIONS(489),
+ [anon_sym_BANG] = ACTIONS(491),
+ [anon_sym_TILDE] = ACTIONS(491),
+ [anon_sym_typeof] = ACTIONS(487),
+ [anon_sym_void] = ACTIONS(487),
+ [anon_sym_delete] = ACTIONS(487),
+ [anon_sym_PLUS_PLUS] = ACTIONS(493),
+ [anon_sym_DASH_DASH] = ACTIONS(493),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(495),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(497),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(475),
+ [anon_sym_get] = ACTIONS(475),
+ [anon_sym_set] = ACTIONS(475),
[sym_html_comment] = ACTIONS(5),
},
[296] = {
- [sym_import] = STATE(1279),
+ [sym_import] = STATE(1272),
[sym_parenthesized_expression] = STATE(430),
- [sym_expression] = STATE(826),
- [sym_primary_expression] = STATE(515),
- [sym_yield_expression] = STATE(535),
- [sym_object] = STATE(531),
- [sym_object_pattern] = STATE(1651),
- [sym_array] = STATE(531),
- [sym_array_pattern] = STATE(1651),
- [sym_glimmer_template] = STATE(535),
- [sym_jsx_element] = STATE(535),
- [sym_jsx_opening_element] = STATE(1053),
- [sym_jsx_self_closing_element] = STATE(535),
- [sym_class] = STATE(531),
- [sym_function_expression] = STATE(531),
- [sym_generator_function] = STATE(531),
- [sym_arrow_function] = STATE(531),
- [sym_call_expression] = STATE(531),
- [sym_new_expression] = STATE(514),
- [sym_await_expression] = STATE(535),
+ [sym_expression] = STATE(864),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
[sym_member_expression] = STATE(430),
[sym_subscript_expression] = STATE(430),
- [sym_assignment_expression] = STATE(535),
- [sym__augmented_assignment_lhs] = STATE(1033),
- [sym_augmented_assignment_expression] = STATE(535),
- [sym__destructuring_pattern] = STATE(1651),
- [sym_ternary_expression] = STATE(535),
- [sym_binary_expression] = STATE(535),
- [sym_unary_expression] = STATE(535),
- [sym_update_expression] = STATE(535),
- [sym_string] = STATE(531),
- [sym_template_string] = STATE(531),
- [sym_regex] = STATE(531),
- [sym_meta_property] = STATE(531),
- [sym_decorator] = STATE(991),
- [sym_formal_parameters] = STATE(1693),
- [aux_sym_export_statement_repeat1] = STATE(1236),
- [sym_identifier] = ACTIONS(484),
- [anon_sym_export] = ACTIONS(486),
- [anon_sym_LBRACE] = ACTIONS(460),
- [anon_sym_import] = ACTIONS(366),
- [anon_sym_let] = ACTIONS(486),
- [anon_sym_LPAREN] = ACTIONS(368),
- [anon_sym_await] = ACTIONS(490),
- [anon_sym_yield] = ACTIONS(492),
- [anon_sym_LBRACK] = ACTIONS(466),
- [sym_glimmer_opening_tag] = ACTIONS(378),
- [anon_sym_LT] = ACTIONS(380),
- [anon_sym_DQUOTE] = ACTIONS(382),
- [anon_sym_SQUOTE] = ACTIONS(384),
- [anon_sym_class] = ACTIONS(386),
- [anon_sym_async] = ACTIONS(494),
- [anon_sym_function] = ACTIONS(390),
- [anon_sym_new] = ACTIONS(496),
- [anon_sym_PLUS] = ACTIONS(498),
- [anon_sym_DASH] = ACTIONS(498),
- [anon_sym_SLASH] = ACTIONS(396),
- [anon_sym_BANG] = ACTIONS(500),
- [anon_sym_TILDE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(498),
- [anon_sym_void] = ACTIONS(498),
- [anon_sym_delete] = ACTIONS(498),
- [anon_sym_PLUS_PLUS] = ACTIONS(502),
- [anon_sym_DASH_DASH] = ACTIONS(502),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(402),
- [sym_number] = ACTIONS(404),
- [sym_private_property_identifier] = ACTIONS(504),
- [sym_this] = ACTIONS(408),
- [sym_super] = ACTIONS(408),
- [sym_true] = ACTIONS(408),
- [sym_false] = ACTIONS(408),
- [sym_null] = ACTIONS(408),
- [sym_undefined] = ACTIONS(506),
- [anon_sym_AT] = ACTIONS(93),
- [anon_sym_static] = ACTIONS(486),
- [anon_sym_get] = ACTIONS(486),
- [anon_sym_set] = ACTIONS(486),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[297] = {
- [sym_namespace_export] = STATE(1604),
- [sym_export_clause] = STATE(1284),
- [sym_declaration] = STATE(379),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_class_declaration] = STATE(407),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function_declaration] = STATE(407),
- [sym_decorator] = STATE(991),
- [aux_sym_export_statement_repeat1] = STATE(1257),
- [aux_sym_object_repeat1] = STATE(1372),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [anon_sym_STAR] = ACTIONS(809),
- [anon_sym_default] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(817),
- [anon_sym_var] = ACTIONS(819),
- [anon_sym_let] = ACTIONS(821),
- [anon_sym_const] = ACTIONS(821),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_class] = ACTIONS(833),
- [anon_sym_async] = ACTIONS(835),
- [anon_sym_function] = ACTIONS(837),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(815),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_import] = STATE(1272),
+ [sym_parenthesized_expression] = STATE(430),
+ [sym_expression] = STATE(785),
+ [sym_primary_expression] = STATE(509),
+ [sym_yield_expression] = STATE(524),
+ [sym_object] = STATE(523),
+ [sym_object_pattern] = STATE(1663),
+ [sym_array] = STATE(523),
+ [sym_array_pattern] = STATE(1663),
+ [sym_jsx_element] = STATE(524),
+ [sym_jsx_opening_element] = STATE(1037),
+ [sym_jsx_self_closing_element] = STATE(524),
+ [sym_class] = STATE(523),
+ [sym_function_expression] = STATE(523),
+ [sym_generator_function] = STATE(523),
+ [sym_arrow_function] = STATE(523),
+ [sym_call_expression] = STATE(523),
+ [sym_new_expression] = STATE(512),
+ [sym_await_expression] = STATE(524),
+ [sym_member_expression] = STATE(430),
+ [sym_subscript_expression] = STATE(430),
+ [sym_assignment_expression] = STATE(524),
+ [sym__augmented_assignment_lhs] = STATE(1015),
+ [sym_augmented_assignment_expression] = STATE(524),
+ [sym__destructuring_pattern] = STATE(1663),
+ [sym_ternary_expression] = STATE(524),
+ [sym_binary_expression] = STATE(524),
+ [sym_unary_expression] = STATE(524),
+ [sym_update_expression] = STATE(524),
+ [sym_string] = STATE(523),
+ [sym_template_string] = STATE(523),
+ [sym_regex] = STATE(523),
+ [sym_meta_property] = STATE(523),
+ [sym_decorator] = STATE(1006),
+ [sym_formal_parameters] = STATE(1655),
+ [aux_sym_export_statement_repeat1] = STATE(1253),
+ [sym_identifier] = ACTIONS(445),
+ [anon_sym_export] = ACTIONS(447),
+ [anon_sym_LBRACE] = ACTIONS(451),
+ [anon_sym_import] = ACTIONS(357),
+ [anon_sym_let] = ACTIONS(447),
+ [anon_sym_LPAREN] = ACTIONS(359),
+ [anon_sym_await] = ACTIONS(453),
+ [anon_sym_yield] = ACTIONS(455),
+ [anon_sym_LBRACK] = ACTIONS(457),
+ [anon_sym_LT] = ACTIONS(619),
+ [anon_sym_DQUOTE] = ACTIONS(371),
+ [anon_sym_SQUOTE] = ACTIONS(373),
+ [anon_sym_class] = ACTIONS(375),
+ [anon_sym_async] = ACTIONS(459),
+ [anon_sym_function] = ACTIONS(379),
+ [anon_sym_new] = ACTIONS(461),
+ [anon_sym_PLUS] = ACTIONS(463),
+ [anon_sym_DASH] = ACTIONS(463),
+ [anon_sym_SLASH] = ACTIONS(385),
+ [anon_sym_BANG] = ACTIONS(465),
+ [anon_sym_TILDE] = ACTIONS(465),
+ [anon_sym_typeof] = ACTIONS(463),
+ [anon_sym_void] = ACTIONS(463),
+ [anon_sym_delete] = ACTIONS(463),
+ [anon_sym_PLUS_PLUS] = ACTIONS(467),
+ [anon_sym_DASH_DASH] = ACTIONS(467),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_AT] = ACTIONS(93),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(391),
+ [sym_number] = ACTIONS(393),
+ [sym_private_property_identifier] = ACTIONS(469),
+ [sym_this] = ACTIONS(397),
+ [sym_super] = ACTIONS(397),
+ [sym_true] = ACTIONS(397),
+ [sym_false] = ACTIONS(397),
+ [sym_null] = ACTIONS(397),
+ [sym_undefined] = ACTIONS(471),
+ [anon_sym_AT] = ACTIONS(91),
+ [anon_sym_static] = ACTIONS(447),
+ [anon_sym_get] = ACTIONS(447),
+ [anon_sym_set] = ACTIONS(447),
[sym_html_comment] = ACTIONS(5),
},
[298] = {
- [sym_namespace_export] = STATE(1604),
- [sym_export_clause] = STATE(1284),
- [sym_declaration] = STATE(379),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_class_declaration] = STATE(407),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function_declaration] = STATE(407),
- [sym_decorator] = STATE(991),
- [aux_sym_export_statement_repeat1] = STATE(1257),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [anon_sym_STAR] = ACTIONS(809),
- [anon_sym_default] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(843),
- [anon_sym_var] = ACTIONS(819),
- [anon_sym_let] = ACTIONS(821),
- [anon_sym_const] = ACTIONS(821),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_class] = ACTIONS(833),
- [anon_sym_async] = ACTIONS(835),
- [anon_sym_function] = ACTIONS(837),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(815),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym_formal_parameters] = STATE(1633),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(840),
+ [anon_sym_export] = ACTIONS(842),
+ [anon_sym_STAR] = ACTIONS(844),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(766),
+ [anon_sym_let] = ACTIONS(842),
+ [anon_sym_LPAREN] = ACTIONS(847),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(842),
+ [anon_sym_function] = ACTIONS(858),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_AT] = ACTIONS(93),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(842),
+ [anon_sym_get] = ACTIONS(862),
+ [anon_sym_set] = ACTIONS(862),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[299] = {
- [sym_namespace_export] = STATE(1604),
- [sym_export_clause] = STATE(1284),
- [sym_declaration] = STATE(379),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_class_declaration] = STATE(407),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function_declaration] = STATE(407),
- [sym_decorator] = STATE(991),
- [aux_sym_export_statement_repeat1] = STATE(1257),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [anon_sym_STAR] = ACTIONS(809),
- [anon_sym_default] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(845),
- [anon_sym_var] = ACTIONS(819),
- [anon_sym_let] = ACTIONS(821),
- [anon_sym_const] = ACTIONS(821),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_class] = ACTIONS(833),
- [anon_sym_async] = ACTIONS(835),
- [anon_sym_function] = ACTIONS(837),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(815),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_namespace_export] = STATE(1424),
+ [sym_export_clause] = STATE(1271),
+ [sym_declaration] = STATE(397),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_decorator] = STATE(1006),
+ [aux_sym_export_statement_repeat1] = STATE(1220),
+ [anon_sym_STAR] = ACTIONS(758),
+ [anon_sym_default] = ACTIONS(760),
+ [anon_sym_LBRACE] = ACTIONS(762),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_var] = ACTIONS(768),
+ [anon_sym_let] = ACTIONS(770),
+ [anon_sym_const] = ACTIONS(770),
+ [anon_sym_LPAREN] = ACTIONS(764),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(864),
+ [anon_sym_EQ] = ACTIONS(866),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_class] = ACTIONS(782),
+ [anon_sym_async] = ACTIONS(784),
+ [anon_sym_function] = ACTIONS(786),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(764),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_AT] = ACTIONS(93),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_AT] = ACTIONS(91),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[300] = {
- [sym_string] = STATE(1488),
- [sym_formal_parameters] = STATE(1664),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(847),
- [anon_sym_export] = ACTIONS(849),
- [anon_sym_STAR] = ACTIONS(851),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(843),
- [anon_sym_let] = ACTIONS(849),
- [anon_sym_LPAREN] = ACTIONS(854),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(849),
- [anon_sym_function] = ACTIONS(865),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym_formal_parameters] = STATE(1633),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(840),
+ [anon_sym_export] = ACTIONS(842),
+ [anon_sym_STAR] = ACTIONS(844),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(800),
+ [anon_sym_let] = ACTIONS(842),
+ [anon_sym_LPAREN] = ACTIONS(847),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(842),
+ [anon_sym_function] = ACTIONS(858),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(849),
- [anon_sym_get] = ACTIONS(869),
- [anon_sym_set] = ACTIONS(869),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(842),
+ [anon_sym_get] = ACTIONS(862),
+ [anon_sym_set] = ACTIONS(862),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[301] = {
- [sym_namespace_export] = STATE(1604),
- [sym_export_clause] = STATE(1284),
- [sym_declaration] = STATE(379),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_class_declaration] = STATE(407),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function_declaration] = STATE(407),
- [sym_decorator] = STATE(991),
- [aux_sym_export_statement_repeat1] = STATE(1257),
- [anon_sym_STAR] = ACTIONS(809),
- [anon_sym_default] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_var] = ACTIONS(819),
- [anon_sym_let] = ACTIONS(821),
- [anon_sym_const] = ACTIONS(821),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(871),
- [anon_sym_EQ] = ACTIONS(873),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_class] = ACTIONS(833),
- [anon_sym_async] = ACTIONS(835),
- [anon_sym_function] = ACTIONS(837),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(815),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym_formal_parameters] = STATE(1633),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1310),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(840),
+ [anon_sym_export] = ACTIONS(842),
+ [anon_sym_STAR] = ACTIONS(844),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(792),
+ [anon_sym_let] = ACTIONS(842),
+ [anon_sym_LPAREN] = ACTIONS(847),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(842),
+ [anon_sym_function] = ACTIONS(858),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_AT] = ACTIONS(93),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(842),
+ [anon_sym_get] = ACTIONS(862),
+ [anon_sym_set] = ACTIONS(862),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[302] = {
- [sym_string] = STATE(1488),
- [sym_formal_parameters] = STATE(1664),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1372),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(847),
- [anon_sym_export] = ACTIONS(849),
- [anon_sym_STAR] = ACTIONS(851),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(817),
- [anon_sym_let] = ACTIONS(849),
- [anon_sym_LPAREN] = ACTIONS(854),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(849),
- [anon_sym_function] = ACTIONS(865),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_namespace_export] = STATE(1424),
+ [sym_export_clause] = STATE(1271),
+ [sym_declaration] = STATE(397),
+ [sym_variable_declaration] = STATE(412),
+ [sym_lexical_declaration] = STATE(412),
+ [sym_class_declaration] = STATE(412),
+ [sym_function_declaration] = STATE(412),
+ [sym_generator_function_declaration] = STATE(412),
+ [sym_decorator] = STATE(1006),
+ [aux_sym_export_statement_repeat1] = STATE(1220),
+ [anon_sym_STAR] = ACTIONS(758),
+ [anon_sym_default] = ACTIONS(868),
+ [anon_sym_LBRACE] = ACTIONS(762),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_var] = ACTIONS(768),
+ [anon_sym_let] = ACTIONS(770),
+ [anon_sym_const] = ACTIONS(770),
+ [anon_sym_LPAREN] = ACTIONS(764),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(870),
+ [anon_sym_EQ] = ACTIONS(866),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_class] = ACTIONS(782),
+ [anon_sym_async] = ACTIONS(784),
+ [anon_sym_function] = ACTIONS(786),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(764),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(849),
- [anon_sym_get] = ACTIONS(869),
- [anon_sym_set] = ACTIONS(869),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_AT] = ACTIONS(91),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[303] = {
- [sym_string] = STATE(1488),
- [sym_formal_parameters] = STATE(1664),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(847),
- [anon_sym_export] = ACTIONS(849),
- [anon_sym_STAR] = ACTIONS(851),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(845),
- [anon_sym_let] = ACTIONS(849),
- [anon_sym_LPAREN] = ACTIONS(854),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(849),
- [anon_sym_function] = ACTIONS(865),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1310),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(872),
+ [anon_sym_export] = ACTIONS(872),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(792),
+ [anon_sym_let] = ACTIONS(872),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(872),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(849),
- [anon_sym_get] = ACTIONS(869),
- [anon_sym_set] = ACTIONS(869),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(872),
+ [anon_sym_get] = ACTIONS(872),
+ [anon_sym_set] = ACTIONS(872),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[304] = {
- [sym_namespace_export] = STATE(1604),
- [sym_export_clause] = STATE(1284),
- [sym_declaration] = STATE(379),
- [sym_variable_declaration] = STATE(407),
- [sym_lexical_declaration] = STATE(407),
- [sym_class_declaration] = STATE(407),
- [sym_function_declaration] = STATE(407),
- [sym_generator_function_declaration] = STATE(407),
- [sym_decorator] = STATE(991),
- [aux_sym_export_statement_repeat1] = STATE(1257),
- [anon_sym_STAR] = ACTIONS(809),
- [anon_sym_default] = ACTIONS(875),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_var] = ACTIONS(819),
- [anon_sym_let] = ACTIONS(821),
- [anon_sym_const] = ACTIONS(821),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(877),
- [anon_sym_EQ] = ACTIONS(873),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_class] = ACTIONS(833),
- [anon_sym_async] = ACTIONS(835),
- [anon_sym_function] = ACTIONS(837),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(815),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(872),
+ [anon_sym_export] = ACTIONS(872),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(800),
+ [anon_sym_let] = ACTIONS(872),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(872),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_AT] = ACTIONS(93),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(872),
+ [anon_sym_get] = ACTIONS(872),
+ [anon_sym_set] = ACTIONS(872),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[305] = {
- [sym_string] = STATE(1488),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(879),
- [anon_sym_export] = ACTIONS(879),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(845),
- [anon_sym_let] = ACTIONS(879),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(879),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(872),
+ [anon_sym_export] = ACTIONS(872),
+ [anon_sym_STAR] = ACTIONS(844),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(800),
+ [anon_sym_let] = ACTIONS(872),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(874),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(879),
- [anon_sym_get] = ACTIONS(879),
- [anon_sym_set] = ACTIONS(879),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(872),
+ [anon_sym_get] = ACTIONS(876),
+ [anon_sym_set] = ACTIONS(876),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[306] = {
- [sym_string] = STATE(1488),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(879),
- [anon_sym_export] = ACTIONS(879),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(843),
- [anon_sym_let] = ACTIONS(879),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(879),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(872),
+ [anon_sym_export] = ACTIONS(872),
+ [anon_sym_STAR] = ACTIONS(844),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(766),
+ [anon_sym_let] = ACTIONS(872),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(874),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(879),
- [anon_sym_get] = ACTIONS(879),
- [anon_sym_set] = ACTIONS(879),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(872),
+ [anon_sym_get] = ACTIONS(876),
+ [anon_sym_set] = ACTIONS(876),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[307] = {
- [sym_string] = STATE(1488),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1372),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(879),
- [anon_sym_export] = ACTIONS(879),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(817),
- [anon_sym_let] = ACTIONS(879),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(879),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1310),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(872),
+ [anon_sym_export] = ACTIONS(872),
+ [anon_sym_STAR] = ACTIONS(844),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(792),
+ [anon_sym_let] = ACTIONS(872),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(874),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(879),
- [anon_sym_get] = ACTIONS(879),
- [anon_sym_set] = ACTIONS(879),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(872),
+ [anon_sym_get] = ACTIONS(876),
+ [anon_sym_set] = ACTIONS(876),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[308] = {
- [sym_string] = STATE(1488),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(879),
- [anon_sym_export] = ACTIONS(879),
- [anon_sym_STAR] = ACTIONS(851),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(845),
- [anon_sym_let] = ACTIONS(879),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(881),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_string] = STATE(1412),
+ [sym__property_name] = STATE(1412),
+ [sym_computed_property_name] = STATE(1412),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(872),
+ [anon_sym_export] = ACTIONS(872),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(766),
+ [anon_sym_let] = ACTIONS(872),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(851),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(775),
+ [anon_sym_DQUOTE] = ACTIONS(854),
+ [anon_sym_SQUOTE] = ACTIONS(856),
+ [anon_sym_async] = ACTIONS(872),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(879),
- [anon_sym_get] = ACTIONS(883),
- [anon_sym_set] = ACTIONS(883),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym_number] = ACTIONS(860),
+ [sym_private_property_identifier] = ACTIONS(860),
+ [anon_sym_static] = ACTIONS(872),
+ [anon_sym_get] = ACTIONS(872),
+ [anon_sym_set] = ACTIONS(872),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[309] = {
- [sym_string] = STATE(1488),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(879),
- [anon_sym_export] = ACTIONS(879),
- [anon_sym_STAR] = ACTIONS(851),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(843),
- [anon_sym_let] = ACTIONS(879),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(881),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1707),
+ [sym_identifier] = ACTIONS(878),
+ [anon_sym_export] = ACTIONS(880),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(880),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_RPAREN] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(764),
+ [anon_sym_EQ] = ACTIONS(885),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_RBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(880),
+ [anon_sym_function] = ACTIONS(887),
+ [anon_sym_EQ_GT] = ACTIONS(889),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(879),
- [anon_sym_get] = ACTIONS(883),
- [anon_sym_set] = ACTIONS(883),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(880),
+ [anon_sym_get] = ACTIONS(880),
+ [anon_sym_set] = ACTIONS(880),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[310] = {
- [sym_string] = STATE(1488),
- [sym__property_name] = STATE(1488),
- [sym_computed_property_name] = STATE(1488),
- [aux_sym_object_repeat1] = STATE(1372),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(879),
- [anon_sym_export] = ACTIONS(879),
- [anon_sym_STAR] = ACTIONS(851),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(817),
- [anon_sym_let] = ACTIONS(879),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(858),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(826),
- [anon_sym_DQUOTE] = ACTIONS(861),
- [anon_sym_SQUOTE] = ACTIONS(863),
- [anon_sym_async] = ACTIONS(881),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1707),
+ [sym_identifier] = ACTIONS(878),
+ [anon_sym_export] = ACTIONS(880),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(880),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_RPAREN] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(764),
+ [anon_sym_EQ] = ACTIONS(891),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_RBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(880),
+ [anon_sym_function] = ACTIONS(887),
+ [anon_sym_EQ_GT] = ACTIONS(889),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym_number] = ACTIONS(867),
- [sym_private_property_identifier] = ACTIONS(867),
- [anon_sym_static] = ACTIONS(879),
- [anon_sym_get] = ACTIONS(883),
- [anon_sym_set] = ACTIONS(883),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(880),
+ [anon_sym_get] = ACTIONS(880),
+ [anon_sym_set] = ACTIONS(880),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[311] = {
- [sym_formal_parameters] = STATE(1722),
- [sym_identifier] = ACTIONS(885),
- [anon_sym_export] = ACTIONS(887),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(887),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(815),
- [anon_sym_EQ] = ACTIONS(892),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_RBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(887),
- [anon_sym_function] = ACTIONS(894),
- [anon_sym_EQ_GT] = ACTIONS(896),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [ts_builtin_sym_end] = ACTIONS(499),
+ [sym_identifier] = ACTIONS(501),
+ [anon_sym_export] = ACTIONS(501),
+ [anon_sym_default] = ACTIONS(501),
+ [anon_sym_LBRACE] = ACTIONS(499),
+ [anon_sym_COMMA] = ACTIONS(499),
+ [anon_sym_RBRACE] = ACTIONS(499),
+ [anon_sym_import] = ACTIONS(501),
+ [anon_sym_with] = ACTIONS(501),
+ [anon_sym_var] = ACTIONS(501),
+ [anon_sym_let] = ACTIONS(501),
+ [anon_sym_const] = ACTIONS(501),
+ [anon_sym_else] = ACTIONS(501),
+ [anon_sym_if] = ACTIONS(501),
+ [anon_sym_switch] = ACTIONS(501),
+ [anon_sym_for] = ACTIONS(501),
+ [anon_sym_LPAREN] = ACTIONS(499),
+ [anon_sym_SEMI] = ACTIONS(499),
+ [anon_sym_await] = ACTIONS(501),
+ [anon_sym_while] = ACTIONS(501),
+ [anon_sym_do] = ACTIONS(501),
+ [anon_sym_try] = ACTIONS(501),
+ [anon_sym_break] = ACTIONS(501),
+ [anon_sym_continue] = ACTIONS(501),
+ [anon_sym_debugger] = ACTIONS(501),
+ [anon_sym_return] = ACTIONS(501),
+ [anon_sym_throw] = ACTIONS(501),
+ [anon_sym_case] = ACTIONS(501),
+ [anon_sym_catch] = ACTIONS(501),
+ [anon_sym_finally] = ACTIONS(501),
+ [anon_sym_yield] = ACTIONS(501),
+ [anon_sym_LBRACK] = ACTIONS(499),
+ [anon_sym_LT] = ACTIONS(499),
+ [anon_sym_DQUOTE] = ACTIONS(499),
+ [anon_sym_SQUOTE] = ACTIONS(499),
+ [anon_sym_class] = ACTIONS(501),
+ [anon_sym_async] = ACTIONS(501),
+ [anon_sym_function] = ACTIONS(501),
+ [anon_sym_new] = ACTIONS(501),
+ [anon_sym_PLUS] = ACTIONS(501),
+ [anon_sym_DASH] = ACTIONS(501),
+ [anon_sym_SLASH] = ACTIONS(501),
+ [anon_sym_BANG] = ACTIONS(499),
+ [anon_sym_TILDE] = ACTIONS(499),
+ [anon_sym_typeof] = ACTIONS(501),
+ [anon_sym_void] = ACTIONS(501),
+ [anon_sym_delete] = ACTIONS(501),
+ [anon_sym_PLUS_PLUS] = ACTIONS(499),
+ [anon_sym_DASH_DASH] = ACTIONS(499),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(887),
- [anon_sym_get] = ACTIONS(887),
- [anon_sym_set] = ACTIONS(887),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(499),
+ [sym_number] = ACTIONS(499),
+ [sym_private_property_identifier] = ACTIONS(499),
+ [sym_this] = ACTIONS(501),
+ [sym_super] = ACTIONS(501),
+ [sym_true] = ACTIONS(501),
+ [sym_false] = ACTIONS(501),
+ [sym_null] = ACTIONS(501),
+ [sym_undefined] = ACTIONS(501),
+ [anon_sym_AT] = ACTIONS(499),
+ [anon_sym_static] = ACTIONS(501),
+ [anon_sym_get] = ACTIONS(501),
+ [anon_sym_set] = ACTIONS(501),
+ [sym__automatic_semicolon] = ACTIONS(893),
[sym_html_comment] = ACTIONS(5),
},
[312] = {
- [sym_formal_parameters] = STATE(1722),
- [sym_identifier] = ACTIONS(885),
- [anon_sym_export] = ACTIONS(887),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(887),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(815),
- [anon_sym_EQ] = ACTIONS(898),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_RBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(887),
- [anon_sym_function] = ACTIONS(894),
- [anon_sym_EQ_GT] = ACTIONS(896),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [ts_builtin_sym_end] = ACTIONS(503),
+ [sym_identifier] = ACTIONS(505),
+ [anon_sym_export] = ACTIONS(505),
+ [anon_sym_default] = ACTIONS(505),
+ [anon_sym_LBRACE] = ACTIONS(503),
+ [anon_sym_COMMA] = ACTIONS(503),
+ [anon_sym_RBRACE] = ACTIONS(503),
+ [anon_sym_import] = ACTIONS(505),
+ [anon_sym_with] = ACTIONS(505),
+ [anon_sym_var] = ACTIONS(505),
+ [anon_sym_let] = ACTIONS(505),
+ [anon_sym_const] = ACTIONS(505),
+ [anon_sym_else] = ACTIONS(505),
+ [anon_sym_if] = ACTIONS(505),
+ [anon_sym_switch] = ACTIONS(505),
+ [anon_sym_for] = ACTIONS(505),
+ [anon_sym_LPAREN] = ACTIONS(503),
+ [anon_sym_SEMI] = ACTIONS(503),
+ [anon_sym_await] = ACTIONS(505),
+ [anon_sym_while] = ACTIONS(505),
+ [anon_sym_do] = ACTIONS(505),
+ [anon_sym_try] = ACTIONS(505),
+ [anon_sym_break] = ACTIONS(505),
+ [anon_sym_continue] = ACTIONS(505),
+ [anon_sym_debugger] = ACTIONS(505),
+ [anon_sym_return] = ACTIONS(505),
+ [anon_sym_throw] = ACTIONS(505),
+ [anon_sym_case] = ACTIONS(505),
+ [anon_sym_catch] = ACTIONS(505),
+ [anon_sym_finally] = ACTIONS(505),
+ [anon_sym_yield] = ACTIONS(505),
+ [anon_sym_LBRACK] = ACTIONS(503),
+ [anon_sym_LT] = ACTIONS(503),
+ [anon_sym_DQUOTE] = ACTIONS(503),
+ [anon_sym_SQUOTE] = ACTIONS(503),
+ [anon_sym_class] = ACTIONS(505),
+ [anon_sym_async] = ACTIONS(505),
+ [anon_sym_function] = ACTIONS(505),
+ [anon_sym_new] = ACTIONS(505),
+ [anon_sym_PLUS] = ACTIONS(505),
+ [anon_sym_DASH] = ACTIONS(505),
+ [anon_sym_SLASH] = ACTIONS(505),
+ [anon_sym_BANG] = ACTIONS(503),
+ [anon_sym_TILDE] = ACTIONS(503),
+ [anon_sym_typeof] = ACTIONS(505),
+ [anon_sym_void] = ACTIONS(505),
+ [anon_sym_delete] = ACTIONS(505),
+ [anon_sym_PLUS_PLUS] = ACTIONS(503),
+ [anon_sym_DASH_DASH] = ACTIONS(503),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(887),
- [anon_sym_get] = ACTIONS(887),
- [anon_sym_set] = ACTIONS(887),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(503),
+ [sym_number] = ACTIONS(503),
+ [sym_private_property_identifier] = ACTIONS(503),
+ [sym_this] = ACTIONS(505),
+ [sym_super] = ACTIONS(505),
+ [sym_true] = ACTIONS(505),
+ [sym_false] = ACTIONS(505),
+ [sym_null] = ACTIONS(505),
+ [sym_undefined] = ACTIONS(505),
+ [anon_sym_AT] = ACTIONS(503),
+ [anon_sym_static] = ACTIONS(505),
+ [anon_sym_get] = ACTIONS(505),
+ [anon_sym_set] = ACTIONS(505),
+ [sym__automatic_semicolon] = ACTIONS(513),
[sym_html_comment] = ACTIONS(5),
},
[313] = {
- [sym_catch_clause] = STATE(331),
- [sym_finally_clause] = STATE(357),
- [ts_builtin_sym_end] = ACTIONS(900),
- [sym_identifier] = ACTIONS(902),
- [anon_sym_export] = ACTIONS(902),
- [anon_sym_default] = ACTIONS(902),
- [anon_sym_LBRACE] = ACTIONS(900),
- [anon_sym_RBRACE] = ACTIONS(900),
- [anon_sym_import] = ACTIONS(902),
- [anon_sym_with] = ACTIONS(902),
- [anon_sym_var] = ACTIONS(902),
- [anon_sym_let] = ACTIONS(902),
- [anon_sym_const] = ACTIONS(902),
- [anon_sym_else] = ACTIONS(902),
- [anon_sym_if] = ACTIONS(902),
- [anon_sym_switch] = ACTIONS(902),
- [anon_sym_for] = ACTIONS(902),
- [anon_sym_LPAREN] = ACTIONS(900),
- [anon_sym_SEMI] = ACTIONS(900),
- [anon_sym_await] = ACTIONS(902),
- [anon_sym_while] = ACTIONS(902),
- [anon_sym_do] = ACTIONS(902),
- [anon_sym_try] = ACTIONS(902),
- [anon_sym_break] = ACTIONS(902),
- [anon_sym_continue] = ACTIONS(902),
- [anon_sym_debugger] = ACTIONS(902),
- [anon_sym_return] = ACTIONS(902),
- [anon_sym_throw] = ACTIONS(902),
- [anon_sym_case] = ACTIONS(902),
- [anon_sym_catch] = ACTIONS(904),
- [anon_sym_finally] = ACTIONS(906),
- [anon_sym_yield] = ACTIONS(902),
- [anon_sym_LBRACK] = ACTIONS(900),
- [sym_glimmer_opening_tag] = ACTIONS(900),
- [anon_sym_LT] = ACTIONS(902),
- [anon_sym_DQUOTE] = ACTIONS(900),
- [anon_sym_SQUOTE] = ACTIONS(900),
- [anon_sym_class] = ACTIONS(902),
- [anon_sym_async] = ACTIONS(902),
- [anon_sym_function] = ACTIONS(902),
- [anon_sym_new] = ACTIONS(902),
- [anon_sym_PLUS] = ACTIONS(902),
- [anon_sym_DASH] = ACTIONS(902),
- [anon_sym_SLASH] = ACTIONS(902),
- [anon_sym_BANG] = ACTIONS(900),
- [anon_sym_TILDE] = ACTIONS(900),
- [anon_sym_typeof] = ACTIONS(902),
- [anon_sym_void] = ACTIONS(902),
- [anon_sym_delete] = ACTIONS(902),
- [anon_sym_PLUS_PLUS] = ACTIONS(900),
- [anon_sym_DASH_DASH] = ACTIONS(900),
+ [sym_variable_declarator] = STATE(1260),
+ [sym_object_pattern] = STATE(1191),
+ [sym_array_pattern] = STATE(1191),
+ [sym__destructuring_pattern] = STATE(1191),
+ [aux_sym_object_repeat1] = STATE(1310),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(895),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_LBRACE] = ACTIONS(897),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(792),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(899),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(900),
- [sym_number] = ACTIONS(900),
- [sym_private_property_identifier] = ACTIONS(900),
- [sym_this] = ACTIONS(902),
- [sym_super] = ACTIONS(902),
- [sym_true] = ACTIONS(902),
- [sym_false] = ACTIONS(902),
- [sym_null] = ACTIONS(902),
- [sym_undefined] = ACTIONS(902),
- [anon_sym_AT] = ACTIONS(900),
- [anon_sym_static] = ACTIONS(902),
- [anon_sym_get] = ACTIONS(902),
- [anon_sym_set] = ACTIONS(902),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[314] = {
- [ts_builtin_sym_end] = ACTIONS(508),
- [sym_identifier] = ACTIONS(510),
- [anon_sym_export] = ACTIONS(510),
- [anon_sym_default] = ACTIONS(510),
- [anon_sym_LBRACE] = ACTIONS(508),
- [anon_sym_COMMA] = ACTIONS(508),
- [anon_sym_RBRACE] = ACTIONS(508),
- [anon_sym_import] = ACTIONS(510),
- [anon_sym_with] = ACTIONS(510),
- [anon_sym_var] = ACTIONS(510),
- [anon_sym_let] = ACTIONS(510),
- [anon_sym_const] = ACTIONS(510),
- [anon_sym_else] = ACTIONS(510),
- [anon_sym_if] = ACTIONS(510),
- [anon_sym_switch] = ACTIONS(510),
- [anon_sym_for] = ACTIONS(510),
- [anon_sym_LPAREN] = ACTIONS(508),
- [anon_sym_SEMI] = ACTIONS(508),
- [anon_sym_await] = ACTIONS(510),
- [anon_sym_while] = ACTIONS(510),
- [anon_sym_do] = ACTIONS(510),
- [anon_sym_try] = ACTIONS(510),
- [anon_sym_break] = ACTIONS(510),
- [anon_sym_continue] = ACTIONS(510),
- [anon_sym_debugger] = ACTIONS(510),
- [anon_sym_return] = ACTIONS(510),
- [anon_sym_throw] = ACTIONS(510),
- [anon_sym_case] = ACTIONS(510),
- [anon_sym_catch] = ACTIONS(510),
- [anon_sym_finally] = ACTIONS(510),
- [anon_sym_yield] = ACTIONS(510),
- [anon_sym_LBRACK] = ACTIONS(508),
- [sym_glimmer_opening_tag] = ACTIONS(508),
- [anon_sym_LT] = ACTIONS(510),
- [anon_sym_DQUOTE] = ACTIONS(508),
- [anon_sym_SQUOTE] = ACTIONS(508),
- [anon_sym_class] = ACTIONS(510),
- [anon_sym_async] = ACTIONS(510),
- [anon_sym_function] = ACTIONS(510),
- [anon_sym_new] = ACTIONS(510),
- [anon_sym_PLUS] = ACTIONS(510),
- [anon_sym_DASH] = ACTIONS(510),
- [anon_sym_SLASH] = ACTIONS(510),
- [anon_sym_BANG] = ACTIONS(508),
- [anon_sym_TILDE] = ACTIONS(508),
- [anon_sym_typeof] = ACTIONS(510),
- [anon_sym_void] = ACTIONS(510),
- [anon_sym_delete] = ACTIONS(510),
- [anon_sym_PLUS_PLUS] = ACTIONS(508),
- [anon_sym_DASH_DASH] = ACTIONS(508),
+ [sym_variable_declarator] = STATE(1260),
+ [sym_object_pattern] = STATE(1191),
+ [sym_array_pattern] = STATE(1191),
+ [sym__destructuring_pattern] = STATE(1191),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(895),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_LBRACE] = ACTIONS(897),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(800),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(899),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(508),
- [sym_number] = ACTIONS(508),
- [sym_private_property_identifier] = ACTIONS(508),
- [sym_this] = ACTIONS(510),
- [sym_super] = ACTIONS(510),
- [sym_true] = ACTIONS(510),
- [sym_false] = ACTIONS(510),
- [sym_null] = ACTIONS(510),
- [sym_undefined] = ACTIONS(510),
- [anon_sym_AT] = ACTIONS(508),
- [anon_sym_static] = ACTIONS(510),
- [anon_sym_get] = ACTIONS(510),
- [anon_sym_set] = ACTIONS(510),
- [sym__automatic_semicolon] = ACTIONS(518),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[315] = {
- [ts_builtin_sym_end] = ACTIONS(570),
- [sym_identifier] = ACTIONS(572),
- [anon_sym_export] = ACTIONS(572),
- [anon_sym_default] = ACTIONS(572),
- [anon_sym_LBRACE] = ACTIONS(570),
- [anon_sym_COMMA] = ACTIONS(570),
- [anon_sym_RBRACE] = ACTIONS(570),
- [anon_sym_import] = ACTIONS(572),
- [anon_sym_with] = ACTIONS(572),
- [anon_sym_var] = ACTIONS(572),
- [anon_sym_let] = ACTIONS(572),
- [anon_sym_const] = ACTIONS(572),
- [anon_sym_else] = ACTIONS(572),
- [anon_sym_if] = ACTIONS(572),
- [anon_sym_switch] = ACTIONS(572),
- [anon_sym_for] = ACTIONS(572),
- [anon_sym_LPAREN] = ACTIONS(570),
- [anon_sym_SEMI] = ACTIONS(570),
- [anon_sym_await] = ACTIONS(572),
- [anon_sym_while] = ACTIONS(572),
- [anon_sym_do] = ACTIONS(572),
- [anon_sym_try] = ACTIONS(572),
- [anon_sym_break] = ACTIONS(572),
- [anon_sym_continue] = ACTIONS(572),
- [anon_sym_debugger] = ACTIONS(572),
- [anon_sym_return] = ACTIONS(572),
- [anon_sym_throw] = ACTIONS(572),
- [anon_sym_case] = ACTIONS(572),
- [anon_sym_catch] = ACTIONS(572),
- [anon_sym_finally] = ACTIONS(572),
- [anon_sym_yield] = ACTIONS(572),
- [anon_sym_LBRACK] = ACTIONS(570),
- [sym_glimmer_opening_tag] = ACTIONS(570),
- [anon_sym_LT] = ACTIONS(572),
- [anon_sym_DQUOTE] = ACTIONS(570),
- [anon_sym_SQUOTE] = ACTIONS(570),
- [anon_sym_class] = ACTIONS(572),
- [anon_sym_async] = ACTIONS(572),
- [anon_sym_function] = ACTIONS(572),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_PLUS] = ACTIONS(572),
- [anon_sym_DASH] = ACTIONS(572),
- [anon_sym_SLASH] = ACTIONS(572),
- [anon_sym_BANG] = ACTIONS(570),
- [anon_sym_TILDE] = ACTIONS(570),
- [anon_sym_typeof] = ACTIONS(572),
- [anon_sym_void] = ACTIONS(572),
- [anon_sym_delete] = ACTIONS(572),
- [anon_sym_PLUS_PLUS] = ACTIONS(570),
- [anon_sym_DASH_DASH] = ACTIONS(570),
+ [sym_variable_declarator] = STATE(1260),
+ [sym_object_pattern] = STATE(1191),
+ [sym_array_pattern] = STATE(1191),
+ [sym__destructuring_pattern] = STATE(1191),
+ [aux_sym_object_repeat1] = STATE(1350),
+ [aux_sym_object_pattern_repeat1] = STATE(1311),
+ [sym_identifier] = ACTIONS(895),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_LBRACE] = ACTIONS(897),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(766),
+ [anon_sym_LPAREN] = ACTIONS(772),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(777),
+ [anon_sym_EQ] = ACTIONS(780),
+ [anon_sym_LBRACK] = ACTIONS(899),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(570),
- [sym_number] = ACTIONS(570),
- [sym_private_property_identifier] = ACTIONS(570),
- [sym_this] = ACTIONS(572),
- [sym_super] = ACTIONS(572),
- [sym_true] = ACTIONS(572),
- [sym_false] = ACTIONS(572),
- [sym_null] = ACTIONS(572),
- [sym_undefined] = ACTIONS(572),
- [anon_sym_AT] = ACTIONS(570),
- [anon_sym_static] = ACTIONS(572),
- [anon_sym_get] = ACTIONS(572),
- [anon_sym_set] = ACTIONS(572),
- [sym__automatic_semicolon] = ACTIONS(908),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[316] = {
- [sym_formal_parameters] = STATE(1664),
- [sym_identifier] = ACTIONS(910),
- [anon_sym_export] = ACTIONS(912),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(912),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(877),
- [anon_sym_EQ] = ACTIONS(873),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(912),
- [anon_sym_function] = ACTIONS(914),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1707),
+ [sym_identifier] = ACTIONS(878),
+ [anon_sym_export] = ACTIONS(880),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(901),
+ [anon_sym_RBRACE] = ACTIONS(901),
+ [anon_sym_let] = ACTIONS(880),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_RPAREN] = ACTIONS(901),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_EQ] = ACTIONS(904),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_RBRACK] = ACTIONS(901),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(880),
+ [anon_sym_function] = ACTIONS(887),
+ [anon_sym_EQ_GT] = ACTIONS(889),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(912),
- [anon_sym_get] = ACTIONS(912),
- [anon_sym_set] = ACTIONS(912),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(880),
+ [anon_sym_get] = ACTIONS(880),
+ [anon_sym_set] = ACTIONS(880),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[317] = {
- [sym_formal_parameters] = STATE(1664),
- [sym_identifier] = ACTIONS(910),
- [anon_sym_export] = ACTIONS(912),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(912),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(871),
- [anon_sym_EQ] = ACTIONS(873),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(912),
- [anon_sym_function] = ACTIONS(865),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1633),
+ [sym_identifier] = ACTIONS(907),
+ [anon_sym_export] = ACTIONS(909),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(909),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(870),
+ [anon_sym_EQ] = ACTIONS(866),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(909),
+ [anon_sym_function] = ACTIONS(911),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(912),
- [anon_sym_get] = ACTIONS(912),
- [anon_sym_set] = ACTIONS(912),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(909),
+ [anon_sym_get] = ACTIONS(909),
+ [anon_sym_set] = ACTIONS(909),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[318] = {
- [sym_formal_parameters] = STATE(1695),
- [sym_identifier] = ACTIONS(916),
- [anon_sym_export] = ACTIONS(918),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(918),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_of] = ACTIONS(826),
- [anon_sym_EQ] = ACTIONS(898),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(918),
- [anon_sym_function] = ACTIONS(920),
- [anon_sym_EQ_GT] = ACTIONS(922),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1671),
+ [sym_identifier] = ACTIONS(913),
+ [anon_sym_export] = ACTIONS(915),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(915),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_of] = ACTIONS(775),
+ [anon_sym_EQ] = ACTIONS(917),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(915),
+ [anon_sym_function] = ACTIONS(919),
+ [anon_sym_EQ_GT] = ACTIONS(921),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(918),
- [anon_sym_get] = ACTIONS(918),
- [anon_sym_set] = ACTIONS(918),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(915),
+ [anon_sym_get] = ACTIONS(915),
+ [anon_sym_set] = ACTIONS(915),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[319] = {
- [sym_formal_parameters] = STATE(1722),
- [sym_identifier] = ACTIONS(885),
- [anon_sym_export] = ACTIONS(887),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(924),
- [anon_sym_RBRACE] = ACTIONS(924),
- [anon_sym_let] = ACTIONS(887),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_RPAREN] = ACTIONS(924),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_EQ] = ACTIONS(927),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_RBRACK] = ACTIONS(924),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(887),
- [anon_sym_function] = ACTIONS(894),
- [anon_sym_EQ_GT] = ACTIONS(896),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1619),
+ [sym_identifier] = ACTIONS(923),
+ [anon_sym_export] = ACTIONS(925),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(927),
+ [anon_sym_RBRACE] = ACTIONS(927),
+ [anon_sym_let] = ACTIONS(925),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_RPAREN] = ACTIONS(927),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_EQ] = ACTIONS(929),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_RBRACK] = ACTIONS(927),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(925),
+ [anon_sym_function] = ACTIONS(887),
+ [anon_sym_EQ_GT] = ACTIONS(932),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(887),
- [anon_sym_get] = ACTIONS(887),
- [anon_sym_set] = ACTIONS(887),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(925),
+ [anon_sym_get] = ACTIONS(925),
+ [anon_sym_set] = ACTIONS(925),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[320] = {
- [sym_formal_parameters] = STATE(1695),
- [sym_identifier] = ACTIONS(916),
- [anon_sym_export] = ACTIONS(918),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(918),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_of] = ACTIONS(826),
- [anon_sym_EQ] = ACTIONS(930),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(918),
- [anon_sym_function] = ACTIONS(920),
- [anon_sym_EQ_GT] = ACTIONS(922),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1633),
+ [sym_identifier] = ACTIONS(907),
+ [anon_sym_export] = ACTIONS(909),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(909),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_EQ] = ACTIONS(866),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(909),
+ [anon_sym_function] = ACTIONS(919),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(918),
- [anon_sym_get] = ACTIONS(918),
- [anon_sym_set] = ACTIONS(918),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(909),
+ [anon_sym_get] = ACTIONS(909),
+ [anon_sym_set] = ACTIONS(909),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[321] = {
- [ts_builtin_sym_end] = ACTIONS(570),
- [sym_identifier] = ACTIONS(572),
- [anon_sym_export] = ACTIONS(572),
- [anon_sym_default] = ACTIONS(572),
- [anon_sym_LBRACE] = ACTIONS(570),
- [anon_sym_COMMA] = ACTIONS(570),
- [anon_sym_RBRACE] = ACTIONS(570),
- [anon_sym_import] = ACTIONS(572),
- [anon_sym_with] = ACTIONS(572),
- [anon_sym_var] = ACTIONS(572),
- [anon_sym_let] = ACTIONS(572),
- [anon_sym_const] = ACTIONS(572),
- [anon_sym_else] = ACTIONS(572),
- [anon_sym_if] = ACTIONS(572),
- [anon_sym_switch] = ACTIONS(572),
- [anon_sym_for] = ACTIONS(572),
- [anon_sym_LPAREN] = ACTIONS(570),
- [anon_sym_SEMI] = ACTIONS(570),
- [anon_sym_await] = ACTIONS(572),
- [anon_sym_while] = ACTIONS(572),
- [anon_sym_do] = ACTIONS(572),
- [anon_sym_try] = ACTIONS(572),
- [anon_sym_break] = ACTIONS(572),
- [anon_sym_continue] = ACTIONS(572),
- [anon_sym_debugger] = ACTIONS(572),
- [anon_sym_return] = ACTIONS(572),
- [anon_sym_throw] = ACTIONS(572),
- [anon_sym_case] = ACTIONS(572),
- [anon_sym_catch] = ACTIONS(572),
- [anon_sym_finally] = ACTIONS(572),
- [anon_sym_yield] = ACTIONS(572),
- [anon_sym_LBRACK] = ACTIONS(570),
- [sym_glimmer_opening_tag] = ACTIONS(570),
- [anon_sym_LT] = ACTIONS(572),
- [anon_sym_DQUOTE] = ACTIONS(570),
- [anon_sym_SQUOTE] = ACTIONS(570),
- [anon_sym_class] = ACTIONS(572),
- [anon_sym_async] = ACTIONS(572),
- [anon_sym_function] = ACTIONS(572),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_PLUS] = ACTIONS(572),
- [anon_sym_DASH] = ACTIONS(572),
- [anon_sym_SLASH] = ACTIONS(572),
- [anon_sym_BANG] = ACTIONS(570),
- [anon_sym_TILDE] = ACTIONS(570),
- [anon_sym_typeof] = ACTIONS(572),
- [anon_sym_void] = ACTIONS(572),
- [anon_sym_delete] = ACTIONS(572),
- [anon_sym_PLUS_PLUS] = ACTIONS(570),
- [anon_sym_DASH_DASH] = ACTIONS(570),
+ [sym_formal_parameters] = STATE(1671),
+ [sym_identifier] = ACTIONS(913),
+ [anon_sym_export] = ACTIONS(915),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(915),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_of] = ACTIONS(775),
+ [anon_sym_EQ] = ACTIONS(891),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(915),
+ [anon_sym_function] = ACTIONS(919),
+ [anon_sym_EQ_GT] = ACTIONS(921),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(570),
- [sym_number] = ACTIONS(570),
- [sym_private_property_identifier] = ACTIONS(570),
- [sym_this] = ACTIONS(572),
- [sym_super] = ACTIONS(572),
- [sym_true] = ACTIONS(572),
- [sym_false] = ACTIONS(572),
- [sym_null] = ACTIONS(572),
- [sym_undefined] = ACTIONS(572),
- [anon_sym_AT] = ACTIONS(570),
- [anon_sym_static] = ACTIONS(572),
- [anon_sym_get] = ACTIONS(572),
- [anon_sym_set] = ACTIONS(572),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(915),
+ [anon_sym_get] = ACTIONS(915),
+ [anon_sym_set] = ACTIONS(915),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[322] = {
- [ts_builtin_sym_end] = ACTIONS(578),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(580),
- [anon_sym_default] = ACTIONS(580),
- [anon_sym_LBRACE] = ACTIONS(578),
- [anon_sym_COMMA] = ACTIONS(578),
- [anon_sym_RBRACE] = ACTIONS(578),
- [anon_sym_import] = ACTIONS(580),
- [anon_sym_with] = ACTIONS(580),
- [anon_sym_var] = ACTIONS(580),
- [anon_sym_let] = ACTIONS(580),
- [anon_sym_const] = ACTIONS(580),
- [anon_sym_else] = ACTIONS(580),
- [anon_sym_if] = ACTIONS(580),
- [anon_sym_switch] = ACTIONS(580),
- [anon_sym_for] = ACTIONS(580),
- [anon_sym_LPAREN] = ACTIONS(578),
- [anon_sym_SEMI] = ACTIONS(578),
- [anon_sym_await] = ACTIONS(580),
- [anon_sym_while] = ACTIONS(580),
- [anon_sym_do] = ACTIONS(580),
- [anon_sym_try] = ACTIONS(580),
- [anon_sym_break] = ACTIONS(580),
- [anon_sym_continue] = ACTIONS(580),
- [anon_sym_debugger] = ACTIONS(580),
- [anon_sym_return] = ACTIONS(580),
- [anon_sym_throw] = ACTIONS(580),
- [anon_sym_case] = ACTIONS(580),
- [anon_sym_catch] = ACTIONS(580),
- [anon_sym_finally] = ACTIONS(580),
- [anon_sym_yield] = ACTIONS(580),
- [anon_sym_LBRACK] = ACTIONS(578),
- [sym_glimmer_opening_tag] = ACTIONS(578),
- [anon_sym_LT] = ACTIONS(580),
- [anon_sym_DQUOTE] = ACTIONS(578),
- [anon_sym_SQUOTE] = ACTIONS(578),
- [anon_sym_class] = ACTIONS(580),
- [anon_sym_async] = ACTIONS(580),
- [anon_sym_function] = ACTIONS(580),
- [anon_sym_new] = ACTIONS(580),
- [anon_sym_PLUS] = ACTIONS(580),
- [anon_sym_DASH] = ACTIONS(580),
- [anon_sym_SLASH] = ACTIONS(580),
- [anon_sym_BANG] = ACTIONS(578),
- [anon_sym_TILDE] = ACTIONS(578),
- [anon_sym_typeof] = ACTIONS(580),
- [anon_sym_void] = ACTIONS(580),
- [anon_sym_delete] = ACTIONS(580),
- [anon_sym_PLUS_PLUS] = ACTIONS(578),
- [anon_sym_DASH_DASH] = ACTIONS(578),
+ [sym_formal_parameters] = STATE(1633),
+ [sym_identifier] = ACTIONS(907),
+ [anon_sym_export] = ACTIONS(909),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(909),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_COLON] = ACTIONS(864),
+ [anon_sym_EQ] = ACTIONS(866),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(909),
+ [anon_sym_function] = ACTIONS(858),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(578),
- [sym_number] = ACTIONS(578),
- [sym_private_property_identifier] = ACTIONS(578),
- [sym_this] = ACTIONS(580),
- [sym_super] = ACTIONS(580),
- [sym_true] = ACTIONS(580),
- [sym_false] = ACTIONS(580),
- [sym_null] = ACTIONS(580),
- [sym_undefined] = ACTIONS(580),
- [anon_sym_AT] = ACTIONS(578),
- [anon_sym_static] = ACTIONS(580),
- [anon_sym_get] = ACTIONS(580),
- [anon_sym_set] = ACTIONS(580),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(909),
+ [anon_sym_get] = ACTIONS(909),
+ [anon_sym_set] = ACTIONS(909),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[323] = {
- [sym_formal_parameters] = STATE(1664),
- [sym_identifier] = ACTIONS(910),
- [anon_sym_export] = ACTIONS(912),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(912),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_EQ] = ACTIONS(873),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(912),
- [anon_sym_function] = ACTIONS(920),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [sym_formal_parameters] = STATE(1633),
+ [sym_identifier] = ACTIONS(907),
+ [anon_sym_export] = ACTIONS(909),
+ [anon_sym_STAR] = ACTIONS(775),
+ [anon_sym_COMMA] = ACTIONS(764),
+ [anon_sym_RBRACE] = ACTIONS(764),
+ [anon_sym_let] = ACTIONS(909),
+ [anon_sym_LPAREN] = ACTIONS(882),
+ [anon_sym_SEMI] = ACTIONS(764),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_EQ] = ACTIONS(891),
+ [anon_sym_LBRACK] = ACTIONS(764),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(909),
+ [anon_sym_function] = ACTIONS(919),
+ [anon_sym_EQ_GT] = ACTIONS(788),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(912),
- [anon_sym_get] = ACTIONS(912),
- [anon_sym_set] = ACTIONS(912),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(909),
+ [anon_sym_get] = ACTIONS(909),
+ [anon_sym_set] = ACTIONS(909),
+ [sym__automatic_semicolon] = ACTIONS(764),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
[324] = {
- [sym_variable_declarator] = STATE(1221),
- [sym_object_pattern] = STATE(1163),
- [sym_array_pattern] = STATE(1163),
- [sym__destructuring_pattern] = STATE(1163),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(932),
- [anon_sym_STAR] = ACTIONS(826),
+ [sym_catch_clause] = STATE(333),
+ [sym_finally_clause] = STATE(367),
+ [ts_builtin_sym_end] = ACTIONS(934),
+ [sym_identifier] = ACTIONS(936),
+ [anon_sym_export] = ACTIONS(936),
+ [anon_sym_default] = ACTIONS(936),
[anon_sym_LBRACE] = ACTIONS(934),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(843),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(936),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [anon_sym_RBRACE] = ACTIONS(934),
+ [anon_sym_import] = ACTIONS(936),
+ [anon_sym_with] = ACTIONS(936),
+ [anon_sym_var] = ACTIONS(936),
+ [anon_sym_let] = ACTIONS(936),
+ [anon_sym_const] = ACTIONS(936),
+ [anon_sym_else] = ACTIONS(936),
+ [anon_sym_if] = ACTIONS(936),
+ [anon_sym_switch] = ACTIONS(936),
+ [anon_sym_for] = ACTIONS(936),
+ [anon_sym_LPAREN] = ACTIONS(934),
+ [anon_sym_SEMI] = ACTIONS(934),
+ [anon_sym_await] = ACTIONS(936),
+ [anon_sym_while] = ACTIONS(936),
+ [anon_sym_do] = ACTIONS(936),
+ [anon_sym_try] = ACTIONS(936),
+ [anon_sym_break] = ACTIONS(936),
+ [anon_sym_continue] = ACTIONS(936),
+ [anon_sym_debugger] = ACTIONS(936),
+ [anon_sym_return] = ACTIONS(936),
+ [anon_sym_throw] = ACTIONS(936),
+ [anon_sym_case] = ACTIONS(936),
+ [anon_sym_catch] = ACTIONS(938),
+ [anon_sym_finally] = ACTIONS(940),
+ [anon_sym_yield] = ACTIONS(936),
+ [anon_sym_LBRACK] = ACTIONS(934),
+ [anon_sym_LT] = ACTIONS(934),
+ [anon_sym_DQUOTE] = ACTIONS(934),
+ [anon_sym_SQUOTE] = ACTIONS(934),
+ [anon_sym_class] = ACTIONS(936),
+ [anon_sym_async] = ACTIONS(936),
+ [anon_sym_function] = ACTIONS(936),
+ [anon_sym_new] = ACTIONS(936),
+ [anon_sym_PLUS] = ACTIONS(936),
+ [anon_sym_DASH] = ACTIONS(936),
+ [anon_sym_SLASH] = ACTIONS(936),
+ [anon_sym_BANG] = ACTIONS(934),
+ [anon_sym_TILDE] = ACTIONS(934),
+ [anon_sym_typeof] = ACTIONS(936),
+ [anon_sym_void] = ACTIONS(936),
+ [anon_sym_delete] = ACTIONS(936),
+ [anon_sym_PLUS_PLUS] = ACTIONS(934),
+ [anon_sym_DASH_DASH] = ACTIONS(934),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(934),
+ [sym_number] = ACTIONS(934),
+ [sym_private_property_identifier] = ACTIONS(934),
+ [sym_this] = ACTIONS(936),
+ [sym_super] = ACTIONS(936),
+ [sym_true] = ACTIONS(936),
+ [sym_false] = ACTIONS(936),
+ [sym_null] = ACTIONS(936),
+ [sym_undefined] = ACTIONS(936),
+ [anon_sym_AT] = ACTIONS(934),
+ [anon_sym_static] = ACTIONS(936),
+ [anon_sym_get] = ACTIONS(936),
+ [anon_sym_set] = ACTIONS(936),
[sym_html_comment] = ACTIONS(5),
},
[325] = {
- [sym_variable_declarator] = STATE(1221),
- [sym_object_pattern] = STATE(1163),
- [sym_array_pattern] = STATE(1163),
- [sym__destructuring_pattern] = STATE(1163),
- [aux_sym_object_repeat1] = STATE(1383),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(932),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_LBRACE] = ACTIONS(934),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(845),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(936),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
- [sym_html_comment] = ACTIONS(5),
- },
- [326] = {
- [sym_formal_parameters] = STATE(1648),
- [sym_identifier] = ACTIONS(938),
- [anon_sym_export] = ACTIONS(940),
- [anon_sym_STAR] = ACTIONS(826),
+ [sym_formal_parameters] = STATE(1619),
+ [sym_identifier] = ACTIONS(923),
+ [anon_sym_export] = ACTIONS(925),
+ [anon_sym_STAR] = ACTIONS(775),
[anon_sym_COMMA] = ACTIONS(942),
[anon_sym_RBRACE] = ACTIONS(942),
- [anon_sym_let] = ACTIONS(940),
- [anon_sym_LPAREN] = ACTIONS(889),
+ [anon_sym_let] = ACTIONS(925),
+ [anon_sym_LPAREN] = ACTIONS(882),
[anon_sym_RPAREN] = ACTIONS(942),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_EQ] = ACTIONS(944),
- [anon_sym_LBRACK] = ACTIONS(815),
+ [anon_sym_in] = ACTIONS(775),
+ [anon_sym_EQ] = ACTIONS(891),
+ [anon_sym_LBRACK] = ACTIONS(764),
[anon_sym_RBRACK] = ACTIONS(942),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(940),
- [anon_sym_function] = ACTIONS(894),
- [anon_sym_EQ_GT] = ACTIONS(947),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(940),
- [anon_sym_get] = ACTIONS(940),
- [anon_sym_set] = ACTIONS(940),
- [sym__ternary_qmark] = ACTIONS(815),
- [sym_html_comment] = ACTIONS(5),
- },
- [327] = {
- [sym_formal_parameters] = STATE(1648),
- [sym_identifier] = ACTIONS(938),
- [anon_sym_export] = ACTIONS(940),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(949),
- [anon_sym_RBRACE] = ACTIONS(949),
- [anon_sym_let] = ACTIONS(940),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_RPAREN] = ACTIONS(949),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_EQ] = ACTIONS(898),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_RBRACK] = ACTIONS(949),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(940),
- [anon_sym_function] = ACTIONS(894),
- [anon_sym_EQ_GT] = ACTIONS(947),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
+ [anon_sym_LT] = ACTIONS(775),
+ [anon_sym_GT] = ACTIONS(775),
+ [anon_sym_DOT] = ACTIONS(764),
+ [anon_sym_async] = ACTIONS(925),
+ [anon_sym_function] = ACTIONS(887),
+ [anon_sym_EQ_GT] = ACTIONS(932),
+ [sym_optional_chain] = ACTIONS(764),
+ [anon_sym_PLUS_EQ] = ACTIONS(790),
+ [anon_sym_DASH_EQ] = ACTIONS(790),
+ [anon_sym_STAR_EQ] = ACTIONS(790),
+ [anon_sym_SLASH_EQ] = ACTIONS(790),
+ [anon_sym_PERCENT_EQ] = ACTIONS(790),
+ [anon_sym_CARET_EQ] = ACTIONS(790),
+ [anon_sym_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_GT_GT_GT_EQ] = ACTIONS(790),
+ [anon_sym_LT_LT_EQ] = ACTIONS(790),
+ [anon_sym_STAR_STAR_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP_EQ] = ACTIONS(790),
+ [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790),
+ [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790),
+ [anon_sym_AMP_AMP] = ACTIONS(775),
+ [anon_sym_PIPE_PIPE] = ACTIONS(775),
+ [anon_sym_GT_GT] = ACTIONS(775),
+ [anon_sym_GT_GT_GT] = ACTIONS(775),
+ [anon_sym_LT_LT] = ACTIONS(775),
+ [anon_sym_AMP] = ACTIONS(775),
+ [anon_sym_CARET] = ACTIONS(775),
+ [anon_sym_PIPE] = ACTIONS(775),
+ [anon_sym_PLUS] = ACTIONS(775),
+ [anon_sym_DASH] = ACTIONS(775),
+ [anon_sym_SLASH] = ACTIONS(775),
+ [anon_sym_PERCENT] = ACTIONS(775),
+ [anon_sym_STAR_STAR] = ACTIONS(775),
+ [anon_sym_LT_EQ] = ACTIONS(764),
+ [anon_sym_EQ_EQ] = ACTIONS(775),
+ [anon_sym_EQ_EQ_EQ] = ACTIONS(764),
+ [anon_sym_BANG_EQ] = ACTIONS(775),
+ [anon_sym_BANG_EQ_EQ] = ACTIONS(764),
+ [anon_sym_GT_EQ] = ACTIONS(764),
+ [anon_sym_QMARK_QMARK] = ACTIONS(775),
+ [anon_sym_instanceof] = ACTIONS(775),
+ [anon_sym_PLUS_PLUS] = ACTIONS(764),
+ [anon_sym_DASH_DASH] = ACTIONS(764),
[sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(940),
- [anon_sym_get] = ACTIONS(940),
- [anon_sym_set] = ACTIONS(940),
- [sym__ternary_qmark] = ACTIONS(815),
- [sym_html_comment] = ACTIONS(5),
- },
- [328] = {
- [sym_formal_parameters] = STATE(1664),
- [sym_identifier] = ACTIONS(910),
- [anon_sym_export] = ACTIONS(912),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(815),
- [anon_sym_let] = ACTIONS(912),
- [anon_sym_LPAREN] = ACTIONS(889),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_EQ] = ACTIONS(898),
- [anon_sym_LBRACK] = ACTIONS(815),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_async] = ACTIONS(912),
- [anon_sym_function] = ACTIONS(920),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [anon_sym_static] = ACTIONS(912),
- [anon_sym_get] = ACTIONS(912),
- [anon_sym_set] = ACTIONS(912),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
- [sym_html_comment] = ACTIONS(5),
- },
- [329] = {
- [sym_variable_declarator] = STATE(1221),
- [sym_object_pattern] = STATE(1163),
- [sym_array_pattern] = STATE(1163),
- [sym__destructuring_pattern] = STATE(1163),
- [aux_sym_object_repeat1] = STATE(1372),
- [aux_sym_object_pattern_repeat1] = STATE(1373),
- [sym_identifier] = ACTIONS(932),
- [anon_sym_STAR] = ACTIONS(826),
- [anon_sym_LBRACE] = ACTIONS(934),
- [anon_sym_COMMA] = ACTIONS(815),
- [anon_sym_RBRACE] = ACTIONS(817),
- [anon_sym_LPAREN] = ACTIONS(823),
- [anon_sym_SEMI] = ACTIONS(815),
- [anon_sym_in] = ACTIONS(826),
- [anon_sym_COLON] = ACTIONS(828),
- [anon_sym_EQ] = ACTIONS(831),
- [anon_sym_LBRACK] = ACTIONS(936),
- [anon_sym_LT] = ACTIONS(826),
- [anon_sym_GT] = ACTIONS(826),
- [anon_sym_DOT] = ACTIONS(815),
- [anon_sym_EQ_GT] = ACTIONS(839),
- [sym_optional_chain] = ACTIONS(815),
- [anon_sym_PLUS_EQ] = ACTIONS(841),
- [anon_sym_DASH_EQ] = ACTIONS(841),
- [anon_sym_STAR_EQ] = ACTIONS(841),
- [anon_sym_SLASH_EQ] = ACTIONS(841),
- [anon_sym_PERCENT_EQ] = ACTIONS(841),
- [anon_sym_CARET_EQ] = ACTIONS(841),
- [anon_sym_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(841),
- [anon_sym_LT_LT_EQ] = ACTIONS(841),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(841),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841),
- [anon_sym_AMP_AMP] = ACTIONS(826),
- [anon_sym_PIPE_PIPE] = ACTIONS(826),
- [anon_sym_GT_GT] = ACTIONS(826),
- [anon_sym_GT_GT_GT] = ACTIONS(826),
- [anon_sym_LT_LT] = ACTIONS(826),
- [anon_sym_AMP] = ACTIONS(826),
- [anon_sym_CARET] = ACTIONS(826),
- [anon_sym_PIPE] = ACTIONS(826),
- [anon_sym_PLUS] = ACTIONS(826),
- [anon_sym_DASH] = ACTIONS(826),
- [anon_sym_SLASH] = ACTIONS(826),
- [anon_sym_PERCENT] = ACTIONS(826),
- [anon_sym_STAR_STAR] = ACTIONS(826),
- [anon_sym_LT_EQ] = ACTIONS(815),
- [anon_sym_EQ_EQ] = ACTIONS(826),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(815),
- [anon_sym_BANG_EQ] = ACTIONS(826),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(815),
- [anon_sym_GT_EQ] = ACTIONS(815),
- [anon_sym_QMARK_QMARK] = ACTIONS(826),
- [anon_sym_instanceof] = ACTIONS(826),
- [anon_sym_PLUS_PLUS] = ACTIONS(815),
- [anon_sym_DASH_DASH] = ACTIONS(815),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(815),
- [sym__automatic_semicolon] = ACTIONS(815),
- [sym__ternary_qmark] = ACTIONS(815),
+ [anon_sym_BQUOTE] = ACTIONS(764),
+ [anon_sym_static] = ACTIONS(925),
+ [anon_sym_get] = ACTIONS(925),
+ [anon_sym_set] = ACTIONS(925),
+ [sym__ternary_qmark] = ACTIONS(764),
[sym_html_comment] = ACTIONS(5),
},
};
static const uint16_t ts_small_parse_table[] = {
- [0] = 12,
- ACTIONS(885), 1,
+ [0] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(499), 18,
+ ts_builtin_sym_end,
+ anon_sym_LBRACE,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_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(501), 44,
+ 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_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_catch,
+ anon_sym_finally,
+ anon_sym_yield,
+ anon_sym_class,
+ anon_sym_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [71] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(519), 18,
+ ts_builtin_sym_end,
+ anon_sym_LBRACE,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_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(521), 44,
+ 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_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_catch,
+ anon_sym_finally,
+ anon_sym_yield,
+ anon_sym_class,
+ anon_sym_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [142] = 13,
+ ACTIONS(878), 1,
sym_identifier,
+ ACTIONS(882), 1,
+ anon_sym_LPAREN,
+ ACTIONS(885), 1,
+ anon_sym_EQ,
+ ACTIONS(887), 1,
+ anon_sym_function,
ACTIONS(889), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(944), 1,
+ anon_sym_in,
+ ACTIONS(947), 1,
+ anon_sym_of,
+ STATE(1707), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(880), 6,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(764), 13,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ ACTIONS(790), 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(775), 20,
+ anon_sym_STAR,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ [233] = 12,
+ ACTIONS(878), 1,
+ sym_identifier,
+ ACTIONS(882), 1,
anon_sym_LPAREN,
- ACTIONS(892), 1,
+ ACTIONS(885), 1,
anon_sym_EQ,
- ACTIONS(894), 1,
+ ACTIONS(887), 1,
anon_sym_function,
- ACTIONS(896), 1,
+ ACTIONS(889), 1,
anon_sym_EQ_GT,
- STATE(1722), 1,
+ STATE(1707), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(951), 3,
+ ACTIONS(949), 3,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RBRACK,
- ACTIONS(887), 6,
+ ACTIONS(880), 6,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(764), 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(790), 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(775), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ [322] = 13,
+ ACTIONS(878), 1,
+ sym_identifier,
+ ACTIONS(882), 1,
+ anon_sym_LPAREN,
+ ACTIONS(887), 1,
+ anon_sym_function,
+ ACTIONS(889), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(901), 1,
+ anon_sym_RBRACK,
+ ACTIONS(904), 1,
+ anon_sym_EQ,
+ ACTIONS(927), 1,
+ anon_sym_COMMA,
+ STATE(1707), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(880), 6,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(764), 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(790), 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(775), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ [412] = 11,
+ ACTIONS(882), 1,
+ anon_sym_LPAREN,
+ ACTIONS(887), 1,
+ anon_sym_function,
+ ACTIONS(891), 1,
+ anon_sym_EQ,
+ ACTIONS(923), 1,
+ sym_identifier,
+ ACTIONS(932), 1,
+ anon_sym_EQ_GT,
+ STATE(1619), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(925), 6,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(764), 13,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ ACTIONS(790), 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(775), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ [498] = 11,
+ ACTIONS(788), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(858), 1,
+ anon_sym_function,
+ ACTIONS(866), 1,
+ anon_sym_EQ,
+ ACTIONS(882), 1,
+ anon_sym_LPAREN,
+ ACTIONS(907), 1,
+ sym_identifier,
+ STATE(1633), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(909), 6,
anon_sym_export,
anon_sym_let,
anon_sym_async,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(815), 11,
+ ACTIONS(764), 13,
+ sym__automatic_semicolon,
sym__ternary_qmark,
+ anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -38128,7 +37374,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -38144,7 +37390,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(826), 21,
+ ACTIONS(775), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -38166,22 +37412,22 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [89] = 5,
- ACTIONS(906), 1,
+ [584] = 5,
+ ACTIONS(940), 1,
anon_sym_finally,
- STATE(409), 1,
+ STATE(375), 1,
sym_finally_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(954), 17,
+ ACTIONS(952), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38192,7 +37438,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(956), 43,
+ ACTIONS(954), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38215,7 +37461,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38236,36 +37481,32 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [164] = 13,
- ACTIONS(885), 1,
- sym_identifier,
- ACTIONS(889), 1,
- anon_sym_LPAREN,
- ACTIONS(892), 1,
+ [658] = 11,
+ ACTIONS(788), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(866), 1,
anon_sym_EQ,
- ACTIONS(894), 1,
+ ACTIONS(882), 1,
+ anon_sym_LPAREN,
+ ACTIONS(907), 1,
+ sym_identifier,
+ ACTIONS(911), 1,
anon_sym_function,
- ACTIONS(896), 1,
- anon_sym_EQ_GT,
- ACTIONS(958), 1,
- anon_sym_in,
- ACTIONS(961), 1,
- anon_sym_of,
- STATE(1722), 1,
+ STATE(1633), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(887), 6,
+ ACTIONS(909), 6,
anon_sym_export,
anon_sym_let,
anon_sym_async,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(815), 13,
+ ACTIONS(764), 13,
+ sym__automatic_semicolon,
sym__ternary_qmark,
- anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
@@ -38277,7 +37518,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -38293,8 +37534,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(826), 20,
+ ACTIONS(775), 21,
anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -38314,20 +37556,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [255] = 4,
- ACTIONS(606), 1,
+ [744] = 4,
+ ACTIONS(956), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(598), 17,
+ ACTIONS(503), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38338,7 +37580,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(600), 43,
+ ACTIONS(505), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38361,7 +37603,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38382,19 +37623,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [327] = 3,
+ [815] = 4,
+ ACTIONS(958), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(570), 18,
- sym__automatic_semicolon,
+ ACTIONS(499), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38405,7 +37647,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(572), 43,
+ ACTIONS(501), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38428,7 +37670,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38449,20 +37690,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [397] = 4,
- ACTIONS(963), 1,
- sym__automatic_semicolon,
+ [886] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(508), 17,
+ ACTIONS(499), 18,
+ sym__automatic_semicolon,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38473,7 +37713,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(510), 43,
+ ACTIONS(501), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38496,7 +37736,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38517,19 +37756,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [469] = 3,
+ [955] = 4,
+ ACTIONS(539), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(578), 18,
- sym__automatic_semicolon,
+ ACTIONS(531), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38540,7 +37780,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(580), 43,
+ ACTIONS(533), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38563,7 +37803,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38584,18 +37823,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [539] = 3,
+ [1026] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(965), 17,
+ ACTIONS(960), 18,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_RPAREN,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38606,7 +37846,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(967), 44,
+ ACTIONS(962), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38628,9 +37868,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_return,
anon_sym_throw,
anon_sym_case,
- anon_sym_finally,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38651,20 +37889,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [609] = 4,
- ACTIONS(640), 1,
- sym__automatic_semicolon,
+ [1095] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(632), 17,
+ ACTIONS(519), 18,
+ sym__automatic_semicolon,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38675,7 +37912,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(634), 43,
+ ACTIONS(521), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38698,7 +37935,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38719,20 +37955,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [681] = 4,
- ACTIONS(540), 1,
+ [1164] = 4,
+ ACTIONS(549), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(532), 17,
+ ACTIONS(541), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38743,7 +37979,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(534), 43,
+ ACTIONS(543), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38766,7 +38002,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38787,20 +38022,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [753] = 4,
- ACTIONS(550), 1,
- sym__automatic_semicolon,
+ [1235] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(542), 17,
+ ACTIONS(964), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -38811,7 +38044,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(544), 43,
+ ACTIONS(966), 43,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -38833,8 +38066,8 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_return,
anon_sym_throw,
anon_sym_case,
+ anon_sym_finally,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -38855,238 +38088,109 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [825] = 4,
- ACTIONS(592), 1,
- sym__automatic_semicolon,
+ [1304] = 12,
+ ACTIONS(788), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(866), 1,
+ anon_sym_EQ,
+ ACTIONS(870), 1,
+ anon_sym_COLON,
+ ACTIONS(895), 1,
+ sym_identifier,
+ ACTIONS(897), 1,
+ anon_sym_LBRACE,
+ ACTIONS(899), 1,
+ anon_sym_LBRACK,
+ STATE(1260), 1,
+ sym_variable_declarator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(584), 17,
- ts_builtin_sym_end,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(586), 43,
- anon_sym_export,
- anon_sym_default,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_else,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_case,
- anon_sym_yield,
- anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [897] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(973), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(969), 16,
- ts_builtin_sym_end,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(971), 43,
- anon_sym_export,
- anon_sym_default,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_else,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_case,
- anon_sym_yield,
- anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [969] = 4,
- ACTIONS(618), 1,
+ STATE(1191), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ ACTIONS(764), 14,
sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(610), 17,
- ts_builtin_sym_end,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
+ anon_sym_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,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(612), 43,
- anon_sym_export,
- anon_sym_default,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_else,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_case,
- anon_sym_yield,
+ ACTIONS(790), 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(775), 21,
+ anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [1041] = 13,
- ACTIONS(885), 1,
- sym_identifier,
- ACTIONS(889), 1,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ [1391] = 13,
+ ACTIONS(882), 1,
anon_sym_LPAREN,
- ACTIONS(894), 1,
+ ACTIONS(887), 1,
anon_sym_function,
- ACTIONS(896), 1,
- anon_sym_EQ_GT,
- ACTIONS(924), 1,
- anon_sym_RBRACK,
- ACTIONS(927), 1,
+ ACTIONS(891), 1,
anon_sym_EQ,
- ACTIONS(942), 1,
- anon_sym_COMMA,
- STATE(1722), 1,
+ ACTIONS(923), 1,
+ sym_identifier,
+ ACTIONS(932), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(944), 1,
+ anon_sym_in,
+ ACTIONS(947), 1,
+ anon_sym_of,
+ STATE(1619), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(887), 6,
+ ACTIONS(925), 6,
anon_sym_export,
anon_sym_let,
anon_sym_async,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(815), 11,
+ ACTIONS(764), 11,
sym__ternary_qmark,
anon_sym_LBRACK,
anon_sym_DOT,
@@ -39098,7 +38202,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -39114,9 +38218,8 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(826), 21,
+ ACTIONS(775), 20,
anon_sym_STAR,
- anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -39136,20 +38239,22 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [1131] = 4,
- ACTIONS(975), 1,
- sym__automatic_semicolon,
+ [1480] = 5,
+ ACTIONS(972), 1,
+ anon_sym_else,
+ STATE(404), 1,
+ sym_else_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(570), 17,
+ ACTIONS(968), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39160,7 +38265,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(572), 43,
+ ACTIONS(970), 41,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39168,7 +38273,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_var,
anon_sym_let,
anon_sym_const,
- anon_sym_else,
anon_sym_if,
anon_sym_switch,
anon_sym_for,
@@ -39183,7 +38287,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39204,19 +38307,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1203] = 3,
+ [1553] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(977), 18,
+ ACTIONS(974), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_RPAREN,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39227,7 +38329,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(979), 43,
+ ACTIONS(976), 43,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39249,8 +38351,8 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_return,
anon_sym_throw,
anon_sym_case,
+ anon_sym_finally,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39271,19 +38373,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1273] = 3,
+ [1622] = 4,
+ ACTIONS(579), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(981), 18,
- sym__automatic_semicolon,
+ ACTIONS(571), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39294,7 +38397,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(983), 43,
+ ACTIONS(573), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39317,7 +38420,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39338,18 +38440,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1343] = 3,
+ [1693] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(985), 17,
+ ACTIONS(523), 18,
+ sym__automatic_semicolon,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39360,7 +38463,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(987), 44,
+ ACTIONS(525), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39382,9 +38485,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_return,
anon_sym_throw,
anon_sym_case,
- anon_sym_finally,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39405,19 +38506,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1413] = 3,
+ [1762] = 4,
+ ACTIONS(589), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(562), 18,
- sym__automatic_semicolon,
+ ACTIONS(581), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39428,7 +38530,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(564), 43,
+ ACTIONS(583), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39451,7 +38553,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39472,19 +38573,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1483] = 3,
+ [1833] = 4,
+ ACTIONS(599), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(566), 18,
- sym__automatic_semicolon,
+ ACTIONS(591), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39495,7 +38597,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(568), 43,
+ ACTIONS(593), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39518,7 +38620,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39539,22 +38640,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1553] = 5,
- ACTIONS(993), 1,
- anon_sym_else,
- STATE(397), 1,
- sym_else_clause,
+ [1904] = 4,
+ ACTIONS(609), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(989), 17,
+ ACTIONS(601), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39565,7 +38664,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(991), 42,
+ ACTIONS(603), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39573,6 +38672,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_var,
anon_sym_let,
anon_sym_const,
+ anon_sym_else,
anon_sym_if,
anon_sym_switch,
anon_sym_for,
@@ -39587,7 +38687,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39608,34 +38707,34 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1627] = 11,
- ACTIONS(889), 1,
- anon_sym_LPAREN,
- ACTIONS(894), 1,
- anon_sym_function,
- ACTIONS(898), 1,
+ [1975] = 12,
+ ACTIONS(788), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(864), 1,
+ anon_sym_COLON,
+ ACTIONS(866), 1,
anon_sym_EQ,
- ACTIONS(938), 1,
+ ACTIONS(895), 1,
sym_identifier,
- ACTIONS(947), 1,
- anon_sym_EQ_GT,
- STATE(1648), 1,
- sym_formal_parameters,
+ ACTIONS(897), 1,
+ anon_sym_LBRACE,
+ ACTIONS(899), 1,
+ anon_sym_LBRACK,
+ STATE(1260), 1,
+ sym_variable_declarator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(940), 6,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(815), 13,
+ STATE(1191), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ ACTIONS(764), 14,
+ sym__automatic_semicolon,
sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_LBRACK,
+ anon_sym_COMMA,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
anon_sym_DOT,
sym_optional_chain,
anon_sym_LT_EQ,
@@ -39645,7 +38744,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -39661,7 +38760,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(826), 21,
+ ACTIONS(775), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -39683,20 +38782,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [1713] = 4,
- ACTIONS(560), 1,
+ [2062] = 4,
+ ACTIONS(559), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(552), 17,
+ ACTIONS(551), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39707,7 +38806,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(554), 43,
+ ACTIONS(553), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39730,7 +38829,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39751,20 +38849,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1785] = 4,
- ACTIONS(628), 1,
+ [2133] = 4,
+ ACTIONS(569), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(620), 17,
+ ACTIONS(561), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39775,7 +38873,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(622), 43,
+ ACTIONS(563), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -39798,7 +38896,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -39819,33 +38916,97 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [1857] = 11,
- ACTIONS(839), 1,
- anon_sym_EQ_GT,
- ACTIONS(865), 1,
+ [2204] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(527), 18,
+ sym__automatic_semicolon,
+ ts_builtin_sym_end,
+ anon_sym_LBRACE,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_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(529), 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_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_async,
anon_sym_function,
- ACTIONS(873), 1,
- anon_sym_EQ,
- ACTIONS(889), 1,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [2273] = 11,
+ ACTIONS(882), 1,
anon_sym_LPAREN,
- ACTIONS(910), 1,
+ ACTIONS(887), 1,
+ anon_sym_function,
+ ACTIONS(978), 1,
sym_identifier,
- STATE(1664), 1,
+ ACTIONS(982), 1,
+ anon_sym_EQ,
+ ACTIONS(984), 1,
+ anon_sym_EQ_GT,
+ STATE(1704), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(912), 6,
+ ACTIONS(980), 6,
anon_sym_export,
anon_sym_let,
anon_sym_async,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(815), 13,
- sym__automatic_semicolon,
+ ACTIONS(764), 11,
sym__ternary_qmark,
- anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -39856,7 +39017,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -39872,9 +39033,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(826), 21,
+ ACTIONS(775), 22,
anon_sym_STAR,
anon_sym_in,
+ anon_sym_of,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -39894,33 +39056,31 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [1943] = 11,
- ACTIONS(839), 1,
- anon_sym_EQ_GT,
- ACTIONS(873), 1,
- anon_sym_EQ,
- ACTIONS(889), 1,
+ [2358] = 11,
+ ACTIONS(882), 1,
anon_sym_LPAREN,
- ACTIONS(910), 1,
- sym_identifier,
- ACTIONS(914), 1,
+ ACTIONS(887), 1,
anon_sym_function,
- STATE(1664), 1,
+ ACTIONS(891), 1,
+ anon_sym_EQ,
+ ACTIONS(978), 1,
+ sym_identifier,
+ ACTIONS(984), 1,
+ anon_sym_EQ_GT,
+ STATE(1704), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(912), 6,
+ ACTIONS(980), 6,
anon_sym_export,
anon_sym_let,
anon_sym_async,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(815), 13,
- sym__automatic_semicolon,
+ ACTIONS(764), 11,
sym__ternary_qmark,
- anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -39931,7 +39091,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -39947,9 +39107,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(826), 21,
+ ACTIONS(775), 22,
anon_sym_STAR,
anon_sym_in,
+ anon_sym_of,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -39969,18 +39130,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [2029] = 3,
+ [2443] = 4,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(995), 17,
+ ACTIONS(990), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ ACTIONS(986), 16,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
- anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -39991,7 +39154,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(997), 43,
+ ACTIONS(988), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40014,7 +39177,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40035,92 +39197,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2098] = 11,
- ACTIONS(889), 1,
- anon_sym_LPAREN,
- ACTIONS(894), 1,
- anon_sym_function,
- ACTIONS(898), 1,
- anon_sym_EQ,
- ACTIONS(999), 1,
- sym_identifier,
- ACTIONS(1003), 1,
- anon_sym_EQ_GT,
- STATE(1728), 1,
- sym_formal_parameters,
+ [2514] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1001), 6,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(815), 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(841), 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(826), 22,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_of,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [2183] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1005), 17,
+ ACTIONS(992), 18,
+ sym__automatic_semicolon,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40131,7 +39220,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1007), 43,
+ ACTIONS(994), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40154,7 +39243,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40175,18 +39263,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2252] = 3,
+ [2583] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1009), 17,
+ ACTIONS(996), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40197,7 +39285,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1011), 43,
+ ACTIONS(998), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40220,7 +39308,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40241,18 +39328,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2321] = 3,
+ [2651] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1013), 17,
+ ACTIONS(1000), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40263,7 +39350,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1015), 43,
+ ACTIONS(1002), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40286,7 +39373,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40307,18 +39393,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2390] = 3,
+ [2719] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1017), 17,
+ ACTIONS(1004), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40329,7 +39415,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1019), 43,
+ ACTIONS(1006), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40352,7 +39438,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40373,18 +39458,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2459] = 3,
+ [2787] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1021), 17,
+ ACTIONS(1008), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40395,7 +39480,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1023), 43,
+ ACTIONS(1010), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40418,7 +39503,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40439,18 +39523,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2528] = 3,
+ [2855] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1025), 17,
+ ACTIONS(1012), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40461,7 +39545,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1027), 43,
+ ACTIONS(1014), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40484,7 +39568,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40505,18 +39588,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2597] = 3,
+ [2923] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1029), 17,
+ ACTIONS(1016), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40527,7 +39610,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1031), 43,
+ ACTIONS(1018), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40550,7 +39633,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40571,18 +39653,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2666] = 3,
+ [2991] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1033), 17,
+ ACTIONS(1020), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40593,7 +39675,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1035), 43,
+ ACTIONS(1022), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40616,7 +39698,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40637,18 +39718,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2735] = 3,
+ [3059] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1037), 17,
+ ACTIONS(1024), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40659,7 +39740,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1039), 43,
+ ACTIONS(1026), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40682,7 +39763,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40703,18 +39783,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2804] = 3,
+ [3127] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1041), 17,
+ ACTIONS(1028), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40725,7 +39805,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1043), 43,
+ ACTIONS(1030), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40748,7 +39828,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40769,18 +39848,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2873] = 3,
+ [3195] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1045), 17,
+ ACTIONS(1032), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40791,7 +39870,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1047), 43,
+ ACTIONS(1034), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40814,7 +39893,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40835,18 +39913,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [2942] = 3,
+ [3263] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1049), 17,
+ ACTIONS(1036), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40857,7 +39935,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1051), 43,
+ ACTIONS(1038), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40880,7 +39958,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40901,18 +39978,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3011] = 3,
+ [3331] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1049), 17,
+ ACTIONS(1040), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40923,7 +40000,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1051), 43,
+ ACTIONS(1042), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -40946,7 +40023,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -40967,18 +40043,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3080] = 3,
+ [3399] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1053), 17,
+ ACTIONS(1044), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -40989,7 +40065,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1055), 43,
+ ACTIONS(1046), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41012,7 +40088,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41033,18 +40108,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3149] = 3,
+ [3467] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1057), 17,
+ ACTIONS(1048), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41055,7 +40130,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1059), 43,
+ ACTIONS(1050), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41078,7 +40153,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41099,18 +40173,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3218] = 3,
+ [3535] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1021), 17,
+ ACTIONS(1052), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41121,7 +40195,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1023), 43,
+ ACTIONS(1054), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41144,7 +40218,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41165,18 +40238,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3287] = 3,
+ [3603] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1021), 17,
+ ACTIONS(1056), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41187,7 +40260,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1023), 43,
+ ACTIONS(1058), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41210,7 +40283,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41231,18 +40303,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3356] = 3,
+ [3671] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1061), 17,
+ ACTIONS(1060), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41253,7 +40325,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1063), 43,
+ ACTIONS(1062), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41276,7 +40348,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41297,18 +40368,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3425] = 3,
+ [3739] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1065), 17,
+ ACTIONS(1064), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41319,7 +40390,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1067), 43,
+ ACTIONS(1066), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41342,7 +40413,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41363,18 +40433,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3494] = 3,
+ [3807] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1069), 17,
+ ACTIONS(1068), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41385,7 +40455,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1071), 43,
+ ACTIONS(1070), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41408,7 +40478,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41429,18 +40498,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3563] = 3,
+ [3875] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1073), 17,
+ ACTIONS(1072), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41451,7 +40520,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1075), 43,
+ ACTIONS(1074), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41474,7 +40543,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41495,18 +40563,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3632] = 3,
+ [3943] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1077), 17,
+ ACTIONS(1076), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41517,7 +40585,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1079), 43,
+ ACTIONS(1078), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41540,7 +40608,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41561,18 +40628,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3701] = 3,
+ [4011] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1081), 17,
+ ACTIONS(1080), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41583,7 +40650,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1083), 43,
+ ACTIONS(1082), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41606,7 +40673,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41627,18 +40693,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3770] = 3,
+ [4079] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1085), 17,
+ ACTIONS(1076), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41649,7 +40715,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1087), 43,
+ ACTIONS(1078), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41672,7 +40738,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41693,18 +40758,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3839] = 3,
+ [4147] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1089), 17,
+ ACTIONS(1084), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41715,7 +40780,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1091), 43,
+ ACTIONS(1086), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41738,7 +40803,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41759,18 +40823,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3908] = 3,
+ [4215] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1093), 17,
+ ACTIONS(1088), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41781,7 +40845,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1095), 43,
+ ACTIONS(1090), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41804,7 +40868,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41825,18 +40888,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [3977] = 3,
+ [4283] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1097), 17,
+ ACTIONS(1092), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41847,7 +40910,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1099), 43,
+ ACTIONS(1094), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41870,7 +40933,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41891,18 +40953,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4046] = 3,
+ [4351] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1101), 17,
+ ACTIONS(1096), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41913,7 +40975,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1103), 43,
+ ACTIONS(1098), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -41936,7 +40998,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -41957,18 +41018,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4115] = 3,
+ [4419] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1081), 17,
+ ACTIONS(1076), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -41979,7 +41040,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1083), 43,
+ ACTIONS(1078), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42002,7 +41063,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42023,18 +41083,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4184] = 3,
+ [4487] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1105), 17,
+ ACTIONS(1100), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42045,7 +41105,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1107), 43,
+ ACTIONS(1102), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42068,7 +41128,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42089,18 +41148,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4253] = 3,
+ [4555] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1109), 17,
+ ACTIONS(1076), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42111,7 +41170,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1111), 43,
+ ACTIONS(1078), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42134,7 +41193,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42155,18 +41213,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4322] = 3,
+ [4623] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1113), 17,
+ ACTIONS(1104), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42177,7 +41235,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1115), 43,
+ ACTIONS(1106), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42200,7 +41258,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42221,18 +41278,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4391] = 3,
+ [4691] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1117), 17,
+ ACTIONS(1108), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42243,7 +41300,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1119), 43,
+ ACTIONS(1110), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42266,7 +41323,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42287,18 +41343,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4460] = 3,
+ [4759] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1121), 17,
+ ACTIONS(1076), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42309,7 +41365,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1123), 43,
+ ACTIONS(1078), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42332,7 +41388,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42353,18 +41408,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4529] = 3,
+ [4827] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1125), 17,
+ ACTIONS(1112), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42375,7 +41430,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1127), 43,
+ ACTIONS(1114), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42398,7 +41453,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42419,18 +41473,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4598] = 3,
+ [4895] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1129), 17,
+ ACTIONS(1076), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42441,7 +41495,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1131), 43,
+ ACTIONS(1078), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42464,7 +41518,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42485,18 +41538,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4667] = 3,
+ [4963] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1133), 17,
+ ACTIONS(1116), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42507,7 +41560,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1135), 43,
+ ACTIONS(1118), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42530,7 +41583,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42551,18 +41603,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4736] = 3,
+ [5031] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1137), 17,
+ ACTIONS(1116), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42573,7 +41625,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1139), 43,
+ ACTIONS(1118), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42596,7 +41648,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42617,18 +41668,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4805] = 3,
+ [5099] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1141), 17,
+ ACTIONS(1120), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42639,7 +41690,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1143), 43,
+ ACTIONS(1122), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42662,7 +41713,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42683,18 +41733,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4874] = 3,
+ [5167] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1145), 17,
+ ACTIONS(1124), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42705,7 +41755,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1147), 43,
+ ACTIONS(1126), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42728,7 +41778,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42749,18 +41798,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [4943] = 3,
+ [5235] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1149), 17,
+ ACTIONS(1128), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42771,7 +41820,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1151), 43,
+ ACTIONS(1130), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42794,7 +41843,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42815,18 +41863,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5012] = 3,
+ [5303] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1153), 17,
+ ACTIONS(1132), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42837,7 +41885,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1155), 43,
+ ACTIONS(1134), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -42860,7 +41908,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -42881,93 +41928,148 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5081] = 12,
- ACTIONS(839), 1,
- anon_sym_EQ_GT,
- ACTIONS(873), 1,
- anon_sym_EQ,
- ACTIONS(877), 1,
- anon_sym_COLON,
- ACTIONS(932), 1,
- sym_identifier,
- ACTIONS(934), 1,
+ [5371] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1136), 17,
+ ts_builtin_sym_end,
anon_sym_LBRACE,
- ACTIONS(936), 1,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
anon_sym_LBRACK,
- STATE(1221), 1,
- sym_variable_declarator,
+ 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(1138), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [5439] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1163), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(815), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
+ ACTIONS(1140), 17,
+ ts_builtin_sym_end,
+ anon_sym_LBRACE,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- 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_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(841), 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(826), 21,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ ACTIONS(1142), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [5168] = 3,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [5507] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1157), 17,
+ ACTIONS(1144), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -42978,7 +42080,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1159), 43,
+ ACTIONS(1146), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43001,7 +42103,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43022,18 +42123,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5237] = 3,
+ [5575] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1161), 17,
+ ACTIONS(1148), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43044,7 +42145,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1163), 43,
+ ACTIONS(1150), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43067,7 +42168,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43088,18 +42188,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5306] = 3,
+ [5643] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1165), 17,
+ ACTIONS(1152), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43110,7 +42210,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1167), 43,
+ ACTIONS(1154), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43133,7 +42233,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43154,18 +42253,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5375] = 3,
+ [5711] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1169), 17,
+ ACTIONS(1156), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43176,7 +42275,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1171), 43,
+ ACTIONS(1158), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43199,7 +42298,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43220,18 +42318,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5444] = 3,
+ [5779] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1173), 17,
+ ACTIONS(1156), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43242,7 +42340,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1175), 43,
+ ACTIONS(1158), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43265,7 +42363,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43286,18 +42383,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5513] = 3,
+ [5847] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1177), 17,
+ ACTIONS(1160), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43308,7 +42405,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1179), 43,
+ ACTIONS(1162), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43331,7 +42428,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43352,18 +42448,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5582] = 3,
+ [5915] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1181), 17,
+ ACTIONS(1164), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43374,7 +42470,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1183), 43,
+ ACTIONS(1166), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43397,7 +42493,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43418,18 +42513,93 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5651] = 3,
+ [5983] = 13,
+ ACTIONS(885), 1,
+ anon_sym_EQ,
+ ACTIONS(889), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(897), 1,
+ anon_sym_LBRACE,
+ ACTIONS(899), 1,
+ anon_sym_LBRACK,
+ ACTIONS(944), 1,
+ anon_sym_in,
+ ACTIONS(947), 1,
+ anon_sym_of,
+ ACTIONS(1168), 1,
+ sym_identifier,
+ STATE(1260), 1,
+ sym_variable_declarator,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1099), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ ACTIONS(764), 13,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(790), 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(775), 20,
+ anon_sym_STAR,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ [6071] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1185), 17,
+ ACTIONS(1170), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43440,7 +42610,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1187), 43,
+ ACTIONS(1172), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43463,7 +42633,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43484,18 +42653,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5720] = 3,
+ [6139] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1189), 17,
+ ACTIONS(1174), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43506,7 +42675,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1191), 43,
+ ACTIONS(1176), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43529,7 +42698,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43550,18 +42718,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5789] = 3,
+ [6207] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1193), 17,
+ ACTIONS(1178), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43572,7 +42740,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1195), 43,
+ ACTIONS(1180), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43595,7 +42763,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43616,160 +42783,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [5858] = 13,
- ACTIONS(889), 1,
- anon_sym_LPAREN,
- ACTIONS(894), 1,
- anon_sym_function,
- ACTIONS(898), 1,
- anon_sym_EQ,
- ACTIONS(938), 1,
- sym_identifier,
- ACTIONS(947), 1,
- anon_sym_EQ_GT,
- ACTIONS(958), 1,
- anon_sym_in,
- ACTIONS(961), 1,
- anon_sym_of,
- STATE(1648), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(940), 6,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(815), 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(841), 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(826), 20,
- anon_sym_STAR,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [5947] = 3,
+ [6275] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1197), 17,
+ ACTIONS(1182), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1199), 43,
- anon_sym_export,
- anon_sym_default,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_else,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_case,
- anon_sym_yield,
anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [6016] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1021), 17,
- ts_builtin_sym_end,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43780,7 +42805,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1023), 43,
+ ACTIONS(1184), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43803,7 +42828,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43824,84 +42848,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6085] = 3,
+ [6343] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1201), 17,
+ ACTIONS(1186), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1203), 43,
- anon_sym_export,
- anon_sym_default,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_else,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_case,
- anon_sym_yield,
anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [6154] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1021), 17,
- ts_builtin_sym_end,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43912,7 +42870,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1023), 43,
+ ACTIONS(1188), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -43935,7 +42893,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -43956,18 +42913,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6223] = 3,
+ [6411] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1205), 17,
+ ACTIONS(1190), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -43978,7 +42935,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1207), 43,
+ ACTIONS(1192), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44001,7 +42958,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44022,18 +42978,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6292] = 3,
+ [6479] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1209), 17,
+ ACTIONS(1012), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -44044,7 +43000,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1211), 43,
+ ACTIONS(1014), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44067,7 +43023,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44088,18 +43043,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6361] = 3,
+ [6547] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1021), 17,
+ ACTIONS(1194), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -44110,7 +43065,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1023), 43,
+ ACTIONS(1196), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44133,7 +43088,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44154,93 +43108,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6430] = 12,
- ACTIONS(839), 1,
- anon_sym_EQ_GT,
- ACTIONS(871), 1,
- anon_sym_COLON,
- ACTIONS(873), 1,
- anon_sym_EQ,
- ACTIONS(932), 1,
- sym_identifier,
- ACTIONS(934), 1,
- anon_sym_LBRACE,
- ACTIONS(936), 1,
- anon_sym_LBRACK,
- STATE(1221), 1,
- sym_variable_declarator,
+ [6615] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1163), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(815), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_LT_EQ,
- 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(841), 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(826), 21,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [6517] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1213), 17,
+ ACTIONS(1198), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -44251,7 +43130,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1215), 43,
+ ACTIONS(1200), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44274,7 +43153,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44295,18 +43173,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6586] = 3,
+ [6683] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1217), 17,
+ ACTIONS(1202), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -44317,7 +43195,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1219), 43,
+ ACTIONS(1204), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44340,7 +43218,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44361,18 +43238,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6655] = 3,
+ [6751] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1221), 17,
+ ACTIONS(1206), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -44383,7 +43260,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1223), 43,
+ ACTIONS(1208), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44406,7 +43283,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44427,18 +43303,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6724] = 3,
+ [6819] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1225), 17,
+ ACTIONS(1210), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -44449,7 +43325,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1227), 43,
+ ACTIONS(1212), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44472,7 +43348,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44493,92 +43368,148 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6793] = 11,
- ACTIONS(889), 1,
- anon_sym_LPAREN,
- ACTIONS(894), 1,
- anon_sym_function,
- ACTIONS(999), 1,
- sym_identifier,
- ACTIONS(1003), 1,
- anon_sym_EQ_GT,
- ACTIONS(1229), 1,
- anon_sym_EQ,
- STATE(1728), 1,
- sym_formal_parameters,
+ [6887] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1001), 6,
+ ACTIONS(1214), 17,
+ ts_builtin_sym_end,
+ anon_sym_LBRACE,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(1216), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(815), 11,
- sym__ternary_qmark,
+ [6955] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1218), 17,
+ ts_builtin_sym_end,
+ anon_sym_LBRACE,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ anon_sym_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(841), 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(826), 22,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_of,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ ACTIONS(1220), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [6878] = 3,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [7023] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1005), 17,
+ ACTIONS(1222), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -44589,7 +43520,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1007), 43,
+ ACTIONS(1224), 42,
anon_sym_export,
anon_sym_default,
anon_sym_import,
@@ -44612,7 +43543,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_throw,
anon_sym_case,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -44633,33 +43563,29 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [6947] = 13,
- ACTIONS(892), 1,
- anon_sym_EQ,
- ACTIONS(896), 1,
+ [7091] = 11,
+ ACTIONS(788), 1,
anon_sym_EQ_GT,
- ACTIONS(934), 1,
+ ACTIONS(866), 1,
+ anon_sym_EQ,
+ ACTIONS(895), 1,
+ sym_identifier,
+ ACTIONS(897), 1,
anon_sym_LBRACE,
- ACTIONS(936), 1,
+ ACTIONS(899), 1,
anon_sym_LBRACK,
- ACTIONS(958), 1,
- anon_sym_in,
- ACTIONS(961), 1,
- anon_sym_of,
- ACTIONS(1231), 1,
- sym_identifier,
- STATE(1221), 1,
+ STATE(1260), 1,
sym_variable_declarator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1109), 3,
+ STATE(1191), 3,
sym_object_pattern,
sym_array_pattern,
sym__destructuring_pattern,
- ACTIONS(815), 13,
+ ACTIONS(764), 13,
+ sym__automatic_semicolon,
sym__ternary_qmark,
- anon_sym_COMMA,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_DOT,
@@ -44671,7 +43597,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -44687,8 +43613,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(826), 20,
+ ACTIONS(775), 21,
anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -44708,41 +43635,46 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [7035] = 11,
- ACTIONS(839), 1,
- anon_sym_EQ_GT,
- ACTIONS(873), 1,
- anon_sym_EQ,
- ACTIONS(932), 1,
- sym_identifier,
- ACTIONS(934), 1,
- anon_sym_LBRACE,
- ACTIONS(936), 1,
- anon_sym_LBRACK,
- STATE(1221), 1,
- sym_variable_declarator,
+ [7174] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1163), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(815), 13,
- sym__automatic_semicolon,
+ ACTIONS(1226), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_EQ,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1228), 36,
sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_RPAREN,
+ anon_sym_of,
+ anon_sym_COLON,
+ anon_sym_LBRACK,
+ anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
- anon_sym_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(841), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -44758,9 +43690,22 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(826), 21,
+ 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,
+ [7240] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1230), 21,
anon_sym_STAR,
anon_sym_in,
+ anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -44779,12 +43724,48 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
+ ACTIONS(1232), 36,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_RPAREN,
+ anon_sym_of,
+ anon_sym_COLON,
+ anon_sym_LBRACK,
+ anon_sym_RBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_PLUS_EQ,
+ anon_sym_DASH_EQ,
+ anon_sym_STAR_EQ,
+ anon_sym_SLASH_EQ,
+ anon_sym_PERCENT_EQ,
+ anon_sym_CARET_EQ,
+ anon_sym_AMP_EQ,
+ anon_sym_PIPE_EQ,
+ anon_sym_GT_GT_EQ,
+ anon_sym_GT_GT_GT_EQ,
+ anon_sym_LT_LT_EQ,
+ anon_sym_STAR_STAR_EQ,
+ anon_sym_AMP_AMP_EQ,
+ anon_sym_PIPE_PIPE_EQ,
+ anon_sym_QMARK_QMARK_EQ,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_instanceof,
- [7118] = 3,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [7306] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1233), 21,
+ ACTIONS(1234), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_EQ,
@@ -44806,7 +43787,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1235), 36,
+ ACTIONS(1236), 36,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -44843,13 +43824,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [7184] = 5,
- ACTIONS(1241), 1,
+ [7372] = 5,
+ ACTIONS(1242), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -44865,7 +43846,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(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -44886,7 +43867,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1239), 21,
+ ACTIONS(1240), 21,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -44908,11 +43889,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [7254] = 3,
+ [7442] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1245), 21,
+ ACTIONS(1246), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_EQ,
@@ -44934,7 +43915,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1247), 36,
+ ACTIONS(1248), 36,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -44971,25 +43952,25 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [7320] = 11,
- ACTIONS(828), 1,
- anon_sym_COLON,
- ACTIONS(845), 1,
+ [7508] = 11,
+ ACTIONS(766), 1,
anon_sym_RBRACE,
- ACTIONS(1249), 1,
+ ACTIONS(777), 1,
+ anon_sym_COLON,
+ ACTIONS(1250), 1,
anon_sym_LPAREN,
- ACTIONS(1252), 1,
+ ACTIONS(1253), 1,
anon_sym_EQ,
- ACTIONS(1254), 1,
+ ACTIONS(1255), 1,
anon_sym_EQ_GT,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 15,
+ ACTIONS(1240), 15,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -45005,7 +43986,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45021,7 +44002,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(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -45042,41 +44023,46 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [7402] = 11,
- ACTIONS(817), 1,
- anon_sym_RBRACE,
- ACTIONS(828), 1,
- anon_sym_COLON,
- ACTIONS(1249), 1,
- anon_sym_LPAREN,
- ACTIONS(1252), 1,
- anon_sym_EQ,
- ACTIONS(1254), 1,
- anon_sym_EQ_GT,
- STATE(1372), 1,
- aux_sym_object_repeat1,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
+ [7590] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 15,
- sym__automatic_semicolon,
+ ACTIONS(994), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_EQ,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(992), 36,
sym__ternary_qmark,
+ anon_sym_LBRACE,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_RPAREN,
+ anon_sym_of,
+ anon_sym_COLON,
anon_sym_LBRACK,
+ anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
- anon_sym_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(1243), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45092,46 +44078,33 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(1237), 20,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7484] = 11,
- ACTIONS(828), 1,
+ 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,
+ [7656] = 11,
+ ACTIONS(777), 1,
anon_sym_COLON,
- ACTIONS(843), 1,
+ ACTIONS(792), 1,
anon_sym_RBRACE,
- ACTIONS(1249), 1,
+ ACTIONS(1250), 1,
anon_sym_LPAREN,
- ACTIONS(1252), 1,
+ ACTIONS(1253), 1,
anon_sym_EQ,
- ACTIONS(1254), 1,
+ ACTIONS(1255), 1,
anon_sym_EQ_GT,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1310), 1,
aux_sym_object_repeat1,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 15,
+ ACTIONS(1240), 15,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -45147,7 +44120,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45163,7 +44136,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(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -45184,11 +44157,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [7566] = 3,
+ [7738] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1256), 21,
+ ACTIONS(1257), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_EQ,
@@ -45210,7 +44183,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1258), 36,
+ ACTIONS(1259), 36,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -45247,11 +44220,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [7632] = 3,
+ [7804] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1260), 21,
+ ACTIONS(1261), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_EQ,
@@ -45273,7 +44246,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1262), 36,
+ ACTIONS(1263), 36,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -45310,61 +44283,32 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [7698] = 3,
+ [7870] = 11,
+ ACTIONS(777), 1,
+ anon_sym_COLON,
+ ACTIONS(800), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1250), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1253), 1,
+ anon_sym_EQ,
+ ACTIONS(1255), 1,
+ anon_sym_EQ_GT,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1264), 21,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_EQ,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(1266), 36,
+ ACTIONS(1240), 15,
+ sym__automatic_semicolon,
sym__ternary_qmark,
- anon_sym_LBRACE,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
anon_sym_LBRACK,
- anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
@@ -45373,46 +44317,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [7764] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(983), 21,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_EQ,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(981), 36,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45428,22 +44333,9 @@ 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,
- [7830] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1268), 21,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
- anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -45462,52 +44354,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1270), 36,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [7896] = 6,
- ACTIONS(1272), 1,
- anon_sym_EQ,
- ACTIONS(1274), 1,
+ [7952] = 6,
+ ACTIONS(889), 1,
anon_sym_EQ_GT,
+ ACTIONS(891), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45523,7 +44378,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(1239), 19,
+ ACTIONS(764), 19,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -45543,7 +44398,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -45564,15 +44419,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [7967] = 6,
- ACTIONS(892), 1,
+ [8023] = 6,
+ ACTIONS(885), 1,
anon_sym_EQ,
- ACTIONS(896), 1,
+ ACTIONS(889), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45588,7 +44443,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(815), 19,
+ ACTIONS(764), 19,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -45608,7 +44463,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -45629,15 +44484,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [8038] = 6,
- ACTIONS(896), 1,
- anon_sym_EQ_GT,
- ACTIONS(898), 1,
+ [8094] = 6,
+ ACTIONS(1242), 1,
anon_sym_EQ,
+ ACTIONS(1265), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45653,7 +44508,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(815), 19,
+ ACTIONS(1240), 19,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -45673,7 +44528,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -45694,15 +44549,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [8109] = 6,
- ACTIONS(1241), 1,
- anon_sym_EQ,
- ACTIONS(1274), 1,
+ [8165] = 6,
+ ACTIONS(1265), 1,
anon_sym_EQ_GT,
+ ACTIONS(1267), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45718,7 +44573,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(1239), 19,
+ ACTIONS(1240), 19,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -45738,7 +44593,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -45759,29 +44614,29 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [8180] = 12,
- ACTIONS(898), 1,
+ [8236] = 12,
+ ACTIONS(891), 1,
anon_sym_EQ,
- ACTIONS(934), 1,
+ ACTIONS(897), 1,
anon_sym_LBRACE,
- ACTIONS(947), 1,
+ ACTIONS(932), 1,
anon_sym_EQ_GT,
- ACTIONS(958), 1,
+ ACTIONS(944), 1,
anon_sym_in,
- ACTIONS(961), 1,
+ ACTIONS(947), 1,
anon_sym_of,
- ACTIONS(1276), 1,
+ ACTIONS(1269), 1,
sym_identifier,
- ACTIONS(1278), 1,
+ ACTIONS(1271), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1339), 3,
+ STATE(1313), 3,
sym_object_pattern,
sym_array_pattern,
sym__destructuring_pattern,
- ACTIONS(815), 11,
+ ACTIONS(764), 11,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_DOT,
@@ -45793,7 +44648,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45809,7 +44664,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(826), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_LT,
anon_sym_GT,
@@ -45830,13 +44685,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [8263] = 5,
- ACTIONS(1272), 1,
+ [8319] = 5,
+ ACTIONS(1267), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -45852,7 +44707,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(1239), 19,
+ ACTIONS(1240), 19,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -45872,7 +44727,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -45893,16 +44748,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [8331] = 3,
+ [8387] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1283), 15,
+ ACTIONS(1276), 15,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -45913,7 +44768,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1281), 40,
+ ACTIONS(1274), 39,
anon_sym_export,
anon_sym_import,
anon_sym_with,
@@ -45933,7 +44788,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_return,
anon_sym_throw,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -45954,199 +44808,199 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [8395] = 3,
+ [8450] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1287), 15,
- anon_sym_LBRACE,
+ ACTIONS(1234), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_EQ,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1236), 33,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- 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_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1285), 40,
- anon_sym_export,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_yield,
+ [8513] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1261), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_EQ,
anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [8459] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1287), 15,
- anon_sym_LBRACE,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1263), 33,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- 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_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1285), 40,
- anon_sym_export,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_yield,
- anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [8523] = 3,
+ [8576] = 6,
+ ACTIONS(788), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(866), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1291), 15,
- anon_sym_LBRACE,
+ ACTIONS(790), 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(764), 17,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
+ anon_sym_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,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1289), 40,
- anon_sym_export,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_yield,
+ ACTIONS(775), 20,
+ anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [8587] = 3,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ [8645] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1287), 15,
+ ACTIONS(1280), 15,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ anon_sym_LT,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
anon_sym_BANG,
@@ -46157,7 +45011,7 @@ static const uint16_t ts_small_parse_table[] = {
sym_number,
sym_private_property_identifier,
anon_sym_AT,
- ACTIONS(1285), 40,
+ ACTIONS(1278), 39,
anon_sym_export,
anon_sym_import,
anon_sym_with,
@@ -46177,7 +45031,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_return,
anon_sym_throw,
anon_sym_yield,
- anon_sym_LT,
anon_sym_class,
anon_sym_async,
anon_sym_function,
@@ -46198,305 +45051,61 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [8651] = 3,
+ [8708] = 6,
+ ACTIONS(1255), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(1282), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(981), 15,
- anon_sym_LBRACE,
+ ACTIONS(1244), 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(1240), 17,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
+ anon_sym_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,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(983), 40,
- anon_sym_export,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_yield,
+ ACTIONS(1238), 20,
+ anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [8715] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1295), 15,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1293), 40,
- anon_sym_export,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_yield,
- anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [8779] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1287), 15,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1285), 40,
- anon_sym_export,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_yield,
- anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [8843] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1299), 15,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_BANG,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1297), 40,
- anon_sym_export,
- anon_sym_import,
- anon_sym_with,
- anon_sym_var,
- anon_sym_let,
- anon_sym_const,
- anon_sym_if,
- anon_sym_switch,
- anon_sym_for,
- anon_sym_await,
- anon_sym_while,
- anon_sym_do,
- anon_sym_try,
- anon_sym_break,
- anon_sym_continue,
- anon_sym_debugger,
- anon_sym_return,
- anon_sym_throw,
- anon_sym_yield,
- anon_sym_LT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_typeof,
- anon_sym_void,
- anon_sym_delete,
- sym_identifier,
- sym_this,
- sym_super,
- sym_true,
- sym_false,
- sym_null,
- sym_undefined,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [8907] = 6,
- ACTIONS(1254), 1,
- anon_sym_EQ_GT,
- ACTIONS(1301), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1243), 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(1239), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(1237), 20,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_SLASH,
@@ -46505,11 +45114,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [8976] = 3,
+ [8777] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1260), 21,
+ ACTIONS(1226), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_EQ,
@@ -46531,7 +45140,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1262), 33,
+ ACTIONS(1228), 33,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -46565,43 +45174,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [9039] = 3,
+ [8840] = 6,
+ ACTIONS(891), 1,
+ anon_sym_EQ,
+ ACTIONS(921), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1256), 21,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_EQ,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(1258), 33,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -46617,30 +45198,13 @@ 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,
- [9102] = 7,
- ACTIONS(1274), 1,
- anon_sym_EQ_GT,
- ACTIONS(1306), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1303), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1239), 13,
+ ACTIONS(764), 17,
+ sym__automatic_semicolon,
sym__ternary_qmark,
+ anon_sym_COMMA,
anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -46652,23 +45216,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 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(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -46689,43 +45237,17 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9173] = 3,
+ [8909] = 7,
+ ACTIONS(870), 1,
+ anon_sym_COLON,
+ ACTIONS(1255), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(1282), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1245), 21,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_EQ,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(1247), 33,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -46741,30 +45263,12 @@ 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,
- [9236] = 7,
- ACTIONS(944), 1,
- anon_sym_EQ,
- ACTIONS(947), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(942), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(815), 13,
+ ACTIONS(1240), 16,
+ sym__automatic_semicolon,
sym__ternary_qmark,
+ anon_sym_COMMA,
anon_sym_LPAREN,
+ anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -46776,23 +45280,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 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(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -46813,15 +45301,17 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9307] = 6,
- ACTIONS(839), 1,
+ [8980] = 7,
+ ACTIONS(788), 1,
anon_sym_EQ_GT,
- ACTIONS(873), 1,
+ ACTIONS(866), 1,
anon_sym_EQ,
+ ACTIONS(870), 1,
+ anon_sym_COLON,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -46837,11 +45327,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(815), 17,
+ ACTIONS(764), 16,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
@@ -46855,7 +45344,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -46876,17 +45365,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9376] = 7,
- ACTIONS(871), 1,
- anon_sym_COLON,
- ACTIONS(1254), 1,
- anon_sym_EQ_GT,
- ACTIONS(1301), 1,
+ [9051] = 6,
+ ACTIONS(1242), 1,
anon_sym_EQ,
+ ACTIONS(1284), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -46902,12 +45389,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(1239), 16,
+ ACTIONS(1240), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -46919,35 +45407,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9447] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1233), 21,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
- anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -46966,54 +45428,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1235), 33,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [9510] = 7,
- ACTIONS(1311), 1,
- anon_sym_EQ,
- ACTIONS(1314), 1,
+ [9120] = 7,
+ ACTIONS(889), 1,
anon_sym_EQ_GT,
+ ACTIONS(904), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1309), 4,
+ ACTIONS(901), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
anon_sym_RBRACK,
- ACTIONS(1239), 13,
+ ACTIONS(764), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -47027,7 +45455,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47043,7 +45471,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(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47064,15 +45492,17 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9581] = 6,
- ACTIONS(839), 1,
+ [9191] = 7,
+ ACTIONS(864), 1,
+ anon_sym_COLON,
+ ACTIONS(1255), 1,
anon_sym_EQ_GT,
- ACTIONS(898), 1,
+ ACTIONS(1282), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47088,11 +45518,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(815), 17,
+ ACTIONS(1240), 16,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
@@ -47106,7 +45535,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47127,11 +45556,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9650] = 3,
+ [9262] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1264), 21,
+ ACTIONS(1257), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_EQ,
@@ -47153,7 +45582,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1266), 33,
+ ACTIONS(1259), 33,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -47187,15 +45616,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [9713] = 6,
- ACTIONS(898), 1,
- anon_sym_EQ,
- ACTIONS(922), 1,
+ [9325] = 6,
+ ACTIONS(1284), 1,
anon_sym_EQ_GT,
+ ACTIONS(1286), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47211,7 +45640,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(815), 17,
+ ACTIONS(1240), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -47229,7 +45658,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47250,15 +45679,75 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9782] = 6,
- ACTIONS(1241), 1,
+ [9394] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1276), 15,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(1274), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [9457] = 6,
+ ACTIONS(917), 1,
anon_sym_EQ,
- ACTIONS(1316), 1,
+ ACTIONS(921), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47274,7 +45763,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(1239), 17,
+ ACTIONS(764), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -47292,7 +45781,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47313,34 +45802,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9851] = 7,
- ACTIONS(898), 1,
+ [9526] = 5,
+ ACTIONS(1242), 1,
anon_sym_EQ,
- ACTIONS(947), 1,
- anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(949), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(815), 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(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47356,7 +45824,26 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(826), 20,
+ ACTIONS(1240), 18,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_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(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47377,14 +45864,172 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [9922] = 3,
+ [9593] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1290), 15,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(1288), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [9656] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1276), 15,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(1274), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [9719] = 7,
+ ACTIONS(1265), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(1295), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(983), 21,
+ ACTIONS(1292), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1240), 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(1244), 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(1238), 20,
anon_sym_STAR,
anon_sym_in,
- anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -47403,32 +46048,85 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(981), 33,
- sym__automatic_semicolon,
- sym__ternary_qmark,
+ [9790] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1300), 15,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(1298), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [9853] = 7,
+ ACTIONS(929), 1,
+ anon_sym_EQ,
+ ACTIONS(932), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(927), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(764), 13,
+ sym__ternary_qmark,
anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
@@ -47437,13 +46135,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [9985] = 5,
- ACTIONS(1241), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47459,26 +46151,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(1239), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47499,20 +46172,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10052] = 7,
- ACTIONS(1241), 1,
+ [9924] = 7,
+ ACTIONS(891), 1,
anon_sym_EQ,
- ACTIONS(1314), 1,
+ ACTIONS(932), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1318), 4,
+ ACTIONS(942), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
anon_sym_RBRACK,
- ACTIONS(1239), 13,
+ ACTIONS(764), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -47526,7 +46199,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47542,7 +46215,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(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47563,15 +46236,34 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10123] = 6,
- ACTIONS(1316), 1,
- anon_sym_EQ_GT,
- ACTIONS(1320), 1,
+ [9995] = 7,
+ ACTIONS(1304), 1,
anon_sym_EQ,
+ ACTIONS(1307), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(1302), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1240), 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(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47587,25 +46279,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(1239), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47626,20 +46300,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10192] = 7,
- ACTIONS(896), 1,
- anon_sym_EQ_GT,
- ACTIONS(927), 1,
+ [10066] = 7,
+ ACTIONS(1242), 1,
anon_sym_EQ,
+ ACTIONS(1307), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(924), 4,
+ ACTIONS(1309), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
anon_sym_RBRACK,
- ACTIONS(815), 13,
+ ACTIONS(1240), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -47653,7 +46327,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47669,7 +46343,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(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47690,17 +46364,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10263] = 7,
- ACTIONS(839), 1,
+ [10137] = 6,
+ ACTIONS(788), 1,
anon_sym_EQ_GT,
- ACTIONS(871), 1,
- anon_sym_COLON,
- ACTIONS(873), 1,
+ ACTIONS(891), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47716,10 +46388,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(815), 16,
+ ACTIONS(764), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
@@ -47733,7 +46406,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47754,15 +46427,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10334] = 6,
- ACTIONS(1241), 1,
+ [10206] = 6,
+ ACTIONS(1242), 1,
anon_sym_EQ,
- ACTIONS(1254), 1,
+ ACTIONS(1255), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47778,7 +46451,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(1239), 17,
+ ACTIONS(1240), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -47796,7 +46469,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -47817,11 +46490,191 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10403] = 3,
+ [10275] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1276), 15,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(1274), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [10338] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1313), 15,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(1311), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [10401] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(992), 15,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ 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(994), 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_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_async,
+ anon_sym_function,
+ anon_sym_new,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_typeof,
+ anon_sym_void,
+ anon_sym_delete,
+ sym_identifier,
+ sym_this,
+ sym_super,
+ sym_true,
+ sym_false,
+ sym_null,
+ sym_undefined,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [10464] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1268), 21,
+ ACTIONS(1246), 21,
anon_sym_STAR,
anon_sym_in,
anon_sym_EQ,
@@ -47843,7 +46696,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1270), 33,
+ ACTIONS(1248), 33,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -47877,41 +46730,58 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [10466] = 7,
- ACTIONS(877), 1,
- anon_sym_COLON,
- ACTIONS(1254), 1,
- anon_sym_EQ_GT,
- ACTIONS(1301), 1,
- anon_sym_EQ,
+ [10527] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 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(1239), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
+ ACTIONS(994), 21,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_EQ,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(992), 33,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
+ anon_sym_PLUS_EQ,
+ anon_sym_DASH_EQ,
+ anon_sym_STAR_EQ,
+ anon_sym_SLASH_EQ,
+ anon_sym_PERCENT_EQ,
+ anon_sym_CARET_EQ,
+ anon_sym_AMP_EQ,
+ anon_sym_PIPE_EQ,
+ anon_sym_GT_GT_EQ,
+ anon_sym_GT_GT_GT_EQ,
+ anon_sym_LT_LT_EQ,
+ anon_sym_STAR_STAR_EQ,
+ anon_sym_AMP_AMP_EQ,
+ anon_sym_PIPE_PIPE_EQ,
+ anon_sym_QMARK_QMARK_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
@@ -47920,9 +46790,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ [10590] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1230), 21,
anon_sym_STAR,
anon_sym_in,
+ anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -47941,17 +46816,51 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10537] = 7,
- ACTIONS(839), 1,
+ ACTIONS(1232), 33,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_PLUS_EQ,
+ anon_sym_DASH_EQ,
+ anon_sym_STAR_EQ,
+ anon_sym_SLASH_EQ,
+ anon_sym_PERCENT_EQ,
+ anon_sym_CARET_EQ,
+ anon_sym_AMP_EQ,
+ anon_sym_PIPE_EQ,
+ anon_sym_GT_GT_EQ,
+ anon_sym_GT_GT_GT_EQ,
+ anon_sym_LT_LT_EQ,
+ anon_sym_STAR_STAR_EQ,
+ anon_sym_AMP_AMP_EQ,
+ anon_sym_PIPE_PIPE_EQ,
+ anon_sym_QMARK_QMARK_EQ,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [10653] = 7,
+ ACTIONS(788), 1,
anon_sym_EQ_GT,
- ACTIONS(873), 1,
- anon_sym_EQ,
- ACTIONS(877), 1,
+ ACTIONS(864), 1,
anon_sym_COLON,
+ ACTIONS(866), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -47967,7 +46876,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(815), 16,
+ ACTIONS(764), 16,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -47984,7 +46893,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48005,15 +46914,33 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10608] = 6,
- ACTIONS(922), 1,
+ [10724] = 7,
+ ACTIONS(1265), 1,
anon_sym_EQ_GT,
- ACTIONS(930), 1,
+ ACTIONS(1267), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(841), 15,
+ ACTIONS(1315), 3,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RBRACK,
+ ACTIONS(1240), 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(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48029,13 +46956,44 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(815), 17,
- sym__automatic_semicolon,
+ ACTIONS(1238), 20,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ [10794] = 8,
+ ACTIONS(1265), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(1267), 1,
+ anon_sym_EQ,
+ ACTIONS(1318), 1,
+ anon_sym_in,
+ ACTIONS(1321), 1,
+ anon_sym_of,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1240), 15,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -48047,9 +47005,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(826), 20,
+ ACTIONS(1244), 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(1238), 19,
anon_sym_STAR,
- anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -48068,33 +47041,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10677] = 7,
- ACTIONS(892), 1,
+ [10866] = 5,
+ ACTIONS(1282), 1,
anon_sym_EQ,
- ACTIONS(896), 1,
- anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(951), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- ACTIONS(815), 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(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48110,7 +47063,25 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(826), 20,
+ ACTIONS(1240), 17,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48131,19 +47102,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10747] = 7,
- ACTIONS(1272), 1,
+ [10932] = 7,
+ ACTIONS(885), 1,
anon_sym_EQ,
- ACTIONS(1274), 1,
+ ACTIONS(889), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1322), 3,
+ ACTIONS(949), 3,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RBRACK,
- ACTIONS(1239), 13,
+ ACTIONS(764), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -48157,7 +47128,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48173,7 +47144,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(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48194,18 +47165,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10817] = 6,
- ACTIONS(1306), 1,
+ [11002] = 6,
+ ACTIONS(1295), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1303), 4,
+ ACTIONS(1292), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
anon_sym_RBRACK,
- ACTIONS(1239), 13,
+ ACTIONS(1240), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -48219,7 +47190,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48235,7 +47206,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(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48256,13 +47227,35 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10885] = 5,
- ACTIONS(1320), 1,
+ [11070] = 8,
+ ACTIONS(885), 1,
anon_sym_EQ,
+ ACTIONS(889), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(944), 1,
+ anon_sym_in,
+ ACTIONS(1323), 1,
+ anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(764), 15,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48278,13 +47271,40 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(1239), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
+ ACTIONS(775), 19,
+ anon_sym_STAR,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_AMP,
+ anon_sym_CARET,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_QMARK_QMARK,
+ [11142] = 6,
+ ACTIONS(1242), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1309), 4,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1240), 13,
+ sym__ternary_qmark,
anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -48296,7 +47316,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(1244), 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(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48317,18 +47353,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [10951] = 6,
- ACTIONS(1241), 1,
+ [11210] = 6,
+ ACTIONS(1304), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1318), 4,
+ ACTIONS(1302), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
anon_sym_RBRACK,
- ACTIONS(1239), 13,
+ ACTIONS(1240), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -48342,7 +47378,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48358,7 +47394,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(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48379,13 +47415,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11019] = 5,
- ACTIONS(1301), 1,
+ [11278] = 5,
+ ACTIONS(1286), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48401,13 +47437,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(1239), 17,
+ ACTIONS(1240), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -48419,7 +47455,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48440,18 +47476,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11085] = 6,
- ACTIONS(1311), 1,
+ [11344] = 8,
+ ACTIONS(889), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(901), 1,
+ anon_sym_RBRACK,
+ ACTIONS(904), 1,
anon_sym_EQ,
+ ACTIONS(927), 1,
+ anon_sym_COMMA,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1309), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1239), 13,
+ ACTIONS(764), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -48465,7 +47502,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48481,7 +47518,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(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48502,19 +47539,17 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11153] = 8,
- ACTIONS(1272), 1,
+ [11415] = 7,
+ ACTIONS(1267), 1,
anon_sym_EQ,
- ACTIONS(1274), 1,
- anon_sym_EQ_GT,
- ACTIONS(1325), 1,
+ ACTIONS(1318), 1,
anon_sym_in,
- ACTIONS(1328), 1,
+ ACTIONS(1321), 1,
anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 15,
+ ACTIONS(1240), 15,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_LPAREN,
@@ -48530,7 +47565,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48546,7 +47581,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(1237), 19,
+ ACTIONS(1238), 19,
anon_sym_STAR,
anon_sym_LT,
anon_sym_GT,
@@ -48566,203 +47601,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11225] = 8,
- ACTIONS(892), 1,
+ [11484] = 6,
+ ACTIONS(1242), 1,
anon_sym_EQ,
- ACTIONS(896), 1,
+ ACTIONS(1307), 1,
anon_sym_EQ_GT,
- ACTIONS(958), 1,
- anon_sym_in,
- ACTIONS(1330), 1,
- anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(815), 15,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(841), 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(826), 19,
- anon_sym_STAR,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11297] = 8,
- ACTIONS(1274), 1,
- anon_sym_EQ_GT,
- ACTIONS(1303), 1,
- anon_sym_RBRACK,
- ACTIONS(1306), 1,
- anon_sym_EQ,
- ACTIONS(1309), 1,
- anon_sym_COMMA,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1239), 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(1243), 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(1237), 20,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11368] = 6,
- ACTIONS(1272), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1322), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- ACTIONS(1239), 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(1243), 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(1237), 20,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11435] = 6,
- ACTIONS(1241), 1,
- anon_sym_EQ,
- ACTIONS(1314), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1239), 15,
+ ACTIONS(1240), 15,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_LPAREN,
@@ -48778,7 +47625,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48794,7 +47641,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(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48815,15 +47662,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11502] = 6,
- ACTIONS(898), 1,
+ [11551] = 6,
+ ACTIONS(891), 1,
anon_sym_EQ,
- ACTIONS(947), 1,
+ ACTIONS(932), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(815), 15,
+ ACTIONS(764), 15,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_LPAREN,
@@ -48839,7 +47686,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48855,7 +47702,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(826), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48876,19 +47723,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11569] = 8,
- ACTIONS(896), 1,
+ [11618] = 8,
+ ACTIONS(1265), 1,
anon_sym_EQ_GT,
- ACTIONS(924), 1,
+ ACTIONS(1292), 1,
anon_sym_RBRACK,
- ACTIONS(927), 1,
+ ACTIONS(1295), 1,
anon_sym_EQ,
- ACTIONS(942), 1,
+ ACTIONS(1302), 1,
anon_sym_COMMA,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(815), 13,
+ ACTIONS(1240), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -48902,7 +47749,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48918,7 +47765,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(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -48939,21 +47786,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11640] = 7,
- ACTIONS(1272), 1,
+ [11689] = 6,
+ ACTIONS(1267), 1,
anon_sym_EQ,
- ACTIONS(1325), 1,
- anon_sym_in,
- ACTIONS(1328), 1,
- anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 15,
- sym__ternary_qmark,
+ ACTIONS(1315), 3,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RBRACK,
+ ACTIONS(1240), 13,
+ sym__ternary_qmark,
anon_sym_LPAREN,
- anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -48965,7 +47810,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -48981,8 +47826,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(1237), 19,
+ ACTIONS(1238), 20,
anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -49001,17 +47847,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11709] = 7,
- ACTIONS(1303), 1,
- anon_sym_RBRACK,
- ACTIONS(1306), 1,
+ [11756] = 8,
+ ACTIONS(1242), 1,
anon_sym_EQ,
- ACTIONS(1309), 1,
- anon_sym_COMMA,
+ ACTIONS(1307), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(1318), 1,
+ anon_sym_in,
+ ACTIONS(1321), 1,
+ anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 13,
+ ACTIONS(1240), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -49025,7 +47873,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49041,9 +47889,8 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- ACTIONS(1237), 20,
+ ACTIONS(1238), 19,
anon_sym_STAR,
- anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -49062,21 +47909,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11777] = 8,
- ACTIONS(898), 1,
+ [11826] = 6,
+ ACTIONS(1242), 1,
anon_sym_EQ,
- ACTIONS(947), 1,
+ ACTIONS(1325), 1,
anon_sym_EQ_GT,
- ACTIONS(958), 1,
- anon_sym_in,
- ACTIONS(1330), 1,
- anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(815), 13,
+ ACTIONS(1240), 14,
sym__ternary_qmark,
anon_sym_LPAREN,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -49088,7 +47932,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49104,8 +47948,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(826), 19,
+ ACTIONS(1238), 20,
anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_AMP_AMP,
@@ -49124,15 +47969,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11847] = 6,
- ACTIONS(1241), 1,
+ [11892] = 6,
+ ACTIONS(982), 1,
anon_sym_EQ,
- ACTIONS(1332), 1,
+ ACTIONS(984), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 14,
+ ACTIONS(764), 14,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_of,
@@ -49147,7 +47992,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49163,7 +48008,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(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49184,19 +48029,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11913] = 8,
- ACTIONS(1241), 1,
+ [11958] = 8,
+ ACTIONS(891), 1,
anon_sym_EQ,
- ACTIONS(1314), 1,
+ ACTIONS(932), 1,
anon_sym_EQ_GT,
- ACTIONS(1325), 1,
+ ACTIONS(944), 1,
anon_sym_in,
- ACTIONS(1328), 1,
+ ACTIONS(1323), 1,
anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 13,
+ ACTIONS(764), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -49210,7 +48055,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49226,7 +48071,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(1237), 19,
+ ACTIONS(775), 19,
anon_sym_STAR,
anon_sym_LT,
anon_sym_GT,
@@ -49246,18 +48091,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [11983] = 6,
- ACTIONS(1003), 1,
- anon_sym_EQ_GT,
- ACTIONS(1229), 1,
+ [12028] = 7,
+ ACTIONS(1292), 1,
+ anon_sym_RBRACK,
+ ACTIONS(1295), 1,
anon_sym_EQ,
+ ACTIONS(1302), 1,
+ anon_sym_COMMA,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(815), 14,
+ ACTIONS(1240), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -49269,7 +48115,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49285,7 +48131,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(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49306,15 +48152,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [12049] = 6,
- ACTIONS(1332), 1,
- anon_sym_EQ_GT,
- ACTIONS(1334), 1,
+ [12096] = 6,
+ ACTIONS(891), 1,
anon_sym_EQ,
+ ACTIONS(984), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 14,
+ ACTIONS(764), 14,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_of,
@@ -49329,7 +48175,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(790), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49345,7 +48191,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(1237), 20,
+ ACTIONS(775), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49366,15 +48212,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [12115] = 6,
- ACTIONS(898), 1,
- anon_sym_EQ,
- ACTIONS(1003), 1,
+ [12162] = 6,
+ ACTIONS(1325), 1,
anon_sym_EQ_GT,
+ ACTIONS(1327), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(815), 14,
+ ACTIONS(1240), 14,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_of,
@@ -49389,7 +48235,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(841), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49405,7 +48251,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(826), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49426,17 +48272,17 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [12181] = 7,
- ACTIONS(1241), 1,
+ [12228] = 7,
+ ACTIONS(1242), 1,
anon_sym_EQ,
- ACTIONS(1325), 1,
+ ACTIONS(1318), 1,
anon_sym_in,
- ACTIONS(1328), 1,
+ ACTIONS(1321), 1,
anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 13,
+ ACTIONS(1240), 13,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -49450,7 +48296,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49466,7 +48312,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(1237), 19,
+ ACTIONS(1238), 19,
anon_sym_STAR,
anon_sym_LT,
anon_sym_GT,
@@ -49486,13 +48332,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [12248] = 5,
- ACTIONS(1334), 1,
+ [12295] = 5,
+ ACTIONS(1327), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1239), 14,
+ ACTIONS(1240), 14,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_of,
@@ -49507,7 +48353,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- ACTIONS(1243), 15,
+ ACTIONS(1244), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -49523,7 +48369,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(1237), 20,
+ ACTIONS(1238), 20,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49544,76 +48390,25 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_QMARK_QMARK,
- [12311] = 5,
- ACTIONS(516), 1,
- anon_sym_EQ,
- ACTIONS(1336), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(510), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(508), 29,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [12367] = 10,
- ACTIONS(402), 1,
+ [12358] = 10,
+ ACTIONS(391), 1,
anon_sym_BQUOTE,
- ACTIONS(1342), 1,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1348), 1,
+ ACTIONS(1339), 1,
sym_optional_chain,
- STATE(553), 1,
- sym_arguments,
- STATE(569), 1,
+ STATE(530), 1,
sym_template_string,
+ STATE(541), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1338), 12,
+ ACTIONS(1329), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49626,7 +48421,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1340), 24,
+ ACTIONS(1331), 24,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -49651,19 +48446,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- [12433] = 7,
- ACTIONS(402), 1,
+ [12424] = 7,
+ ACTIONS(391), 1,
anon_sym_BQUOTE,
- ACTIONS(1342), 1,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- STATE(553), 1,
- sym_arguments,
- STATE(569), 1,
+ STATE(530), 1,
sym_template_string,
+ STATE(541), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1338), 12,
+ ACTIONS(1329), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49676,7 +48471,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1340), 27,
+ ACTIONS(1331), 27,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -49704,21 +48499,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- [12493] = 8,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- STATE(540), 1,
- sym_arguments,
+ [12484] = 5,
+ ACTIONS(511), 1,
+ anon_sym_EQ,
+ ACTIONS(1341), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1350), 12,
+ ACTIONS(505), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49731,16 +48520,20 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1352), 25,
+ ACTIONS(503), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_of,
anon_sym_COLON,
+ anon_sym_LBRACK,
anon_sym_RBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -49757,13 +48550,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [12554] = 4,
- ACTIONS(1241), 1,
- anon_sym_EQ,
+ [12540] = 4,
+ ACTIONS(1343), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(501), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49776,7 +48569,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 29,
+ ACTIONS(499), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -49806,13 +48599,66 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [12607] = 4,
- ACTIONS(1356), 1,
+ [12593] = 8,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ STATE(528), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1345), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1347), 25,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_RPAREN,
+ anon_sym_of,
+ anon_sym_COLON,
+ anon_sym_RBRACK,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [12654] = 4,
+ ACTIONS(1341), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(572), 12,
+ ACTIONS(505), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49825,7 +48671,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(570), 29,
+ ACTIONS(503), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -49855,24 +48701,21 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [12660] = 9,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ [12707] = 8,
+ ACTIONS(391), 1,
+ anon_sym_BQUOTE,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1339), 1,
sym_optional_chain,
- STATE(540), 1,
- sym_arguments,
+ STATE(530), 1,
+ sym_template_string,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1358), 12,
+ ACTIONS(1351), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49885,11 +48728,12 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1360), 23,
+ ACTIONS(1353), 25,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_of,
@@ -49908,25 +48752,26 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_BQUOTE,
- [12723] = 9,
- ACTIONS(1342), 1,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ [12768] = 9,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1364), 12,
+ ACTIONS(1355), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49939,7 +48784,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1366), 23,
+ ACTIONS(1357), 23,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -49963,13 +48808,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
anon_sym_BQUOTE,
- [12786] = 4,
- ACTIONS(1336), 1,
- sym__automatic_semicolon,
+ [12831] = 4,
+ ACTIONS(1242), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(510), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -49982,7 +48827,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(508), 29,
+ ACTIONS(1240), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50012,15 +48857,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [12839] = 5,
- ACTIONS(402), 1,
+ [12884] = 5,
+ ACTIONS(391), 1,
anon_sym_BQUOTE,
- STATE(569), 1,
+ STATE(530), 1,
sym_template_string,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1368), 12,
+ ACTIONS(1351), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50033,7 +48878,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1370), 28,
+ ACTIONS(1353), 28,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50062,21 +48907,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- [12894] = 8,
- ACTIONS(402), 1,
- anon_sym_BQUOTE,
- ACTIONS(1344), 1,
+ [12939] = 9,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1348), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- STATE(569), 1,
- sym_template_string,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1368), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1361), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50089,12 +48937,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1370), 25,
+ ACTIONS(1363), 23,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_of,
@@ -50113,13 +48960,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- [12955] = 3,
+ anon_sym_BQUOTE,
+ [13002] = 4,
+ ACTIONS(1369), 1,
+ sym_regex_flags,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1372), 12,
+ ACTIONS(1365), 13,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50132,7 +48980,8 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1374), 29,
+ anon_sym_instanceof,
+ ACTIONS(1367), 27,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50140,7 +48989,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_RPAREN,
- anon_sym_of,
anon_sym_COLON,
anon_sym_LBRACK,
anon_sym_RBRACK,
@@ -50158,15 +49006,14 @@ 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,
- [13005] = 3,
+ [13054] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1376), 12,
+ ACTIONS(545), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50179,7 +49026,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1378), 29,
+ ACTIONS(547), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50209,11 +49056,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13055] = 3,
+ [13104] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(580), 12,
+ ACTIONS(575), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50226,7 +49073,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(578), 29,
+ ACTIONS(577), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50256,11 +49103,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13105] = 3,
+ [13154] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1380), 12,
+ ACTIONS(555), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50273,7 +49120,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1382), 29,
+ ACTIONS(557), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50303,11 +49150,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13155] = 3,
+ [13204] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1384), 12,
+ ACTIONS(565), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50320,7 +49167,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1386), 29,
+ ACTIONS(567), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50350,11 +49197,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13205] = 3,
+ [13254] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1388), 12,
+ ACTIONS(585), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50367,7 +49214,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1390), 29,
+ ACTIONS(587), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50397,11 +49244,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13255] = 3,
+ [13304] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1392), 12,
+ ACTIONS(595), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50414,7 +49261,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1394), 29,
+ ACTIONS(597), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50444,18 +49291,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13305] = 5,
- ACTIONS(516), 1,
- anon_sym_EQ,
+ [13354] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1396), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(512), 12,
+ ACTIONS(605), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50468,13 +49308,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(514), 24,
+ ACTIONS(607), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_RPAREN,
anon_sym_of,
anon_sym_COLON,
anon_sym_LBRACK,
+ anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -50493,11 +49338,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13359] = 3,
+ [13404] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1399), 12,
+ ACTIONS(535), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50510,7 +49355,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1401), 29,
+ ACTIONS(537), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50540,11 +49385,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13409] = 3,
+ [13454] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(636), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50557,7 +49402,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(638), 29,
+ ACTIONS(1240), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50587,11 +49432,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13459] = 3,
+ [13504] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1403), 12,
+ ACTIONS(1351), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50604,7 +49449,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1405), 29,
+ ACTIONS(1353), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50634,18 +49479,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13509] = 5,
- ACTIONS(1414), 1,
+ [13554] = 5,
+ ACTIONS(1378), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1411), 4,
+ ACTIONS(1375), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
anon_sym_RBRACK,
- ACTIONS(1407), 12,
+ ACTIONS(1371), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50658,7 +49503,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1409), 24,
+ ACTIONS(1373), 24,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_LPAREN,
@@ -50683,11 +49528,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13563] = 3,
+ [13608] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(536), 12,
+ ACTIONS(1380), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50700,7 +49545,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(538), 29,
+ ACTIONS(1382), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50730,11 +49575,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13613] = 3,
+ [13658] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(546), 12,
+ ACTIONS(1384), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50747,7 +49592,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(548), 29,
+ ACTIONS(1386), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50777,11 +49622,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13663] = 3,
+ [13708] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1416), 12,
+ ACTIONS(1388), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50794,7 +49639,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1418), 29,
+ ACTIONS(1390), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50824,11 +49669,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13713] = 3,
+ [13758] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(1392), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50841,7 +49686,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 29,
+ ACTIONS(1394), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50871,11 +49716,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13763] = 3,
+ [13808] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1420), 12,
+ ACTIONS(1388), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50888,7 +49733,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1422), 29,
+ ACTIONS(1390), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50918,11 +49763,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13813] = 3,
+ [13858] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(602), 12,
+ ACTIONS(1396), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50935,7 +49780,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(604), 29,
+ ACTIONS(1398), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -50965,11 +49810,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13863] = 3,
+ [13908] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(614), 12,
+ ACTIONS(1400), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -50982,7 +49827,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(616), 29,
+ ACTIONS(1402), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51012,11 +49857,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13913] = 3,
+ [13958] = 5,
+ ACTIONS(1411), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1368), 12,
+ ACTIONS(1408), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1404), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51029,7 +49881,96 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1370), 29,
+ ACTIONS(1406), 24,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_of,
+ anon_sym_COLON,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [14012] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1413), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1415), 29,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_RPAREN,
+ anon_sym_of,
+ anon_sym_COLON,
+ anon_sym_LBRACK,
+ anon_sym_RBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [14062] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1417), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1419), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51059,11 +50000,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [13963] = 3,
+ [14112] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1424), 12,
+ ACTIONS(1421), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51076,7 +50017,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1426), 29,
+ ACTIONS(1423), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51106,11 +50047,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14013] = 3,
+ [14162] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(624), 12,
+ ACTIONS(1425), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51123,7 +50064,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(626), 29,
+ ACTIONS(1427), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51153,11 +50094,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14063] = 3,
+ [14212] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1428), 12,
+ ACTIONS(525), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51170,7 +50111,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1430), 29,
+ ACTIONS(523), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51200,11 +50141,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14113] = 3,
+ [14262] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1432), 12,
+ ACTIONS(1429), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51217,7 +50158,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1434), 29,
+ ACTIONS(1431), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51247,11 +50188,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14163] = 3,
+ [14312] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1436), 12,
+ ACTIONS(1433), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51264,7 +50205,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1438), 29,
+ ACTIONS(1435), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51294,11 +50235,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14213] = 3,
+ [14362] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1440), 12,
+ ACTIONS(1437), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51311,7 +50252,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1442), 29,
+ ACTIONS(1439), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51341,7 +50282,56 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14263] = 3,
+ [14412] = 5,
+ ACTIONS(511), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1441), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(507), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(509), 24,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_LPAREN,
+ anon_sym_of,
+ anon_sym_COLON,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [14466] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
@@ -51388,7 +50378,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14313] = 3,
+ [14516] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
@@ -51435,7 +50425,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14363] = 3,
+ [14566] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
@@ -51482,7 +50472,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14413] = 3,
+ [14616] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
@@ -51529,7 +50519,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14463] = 3,
+ [14666] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
@@ -51576,11 +50566,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14513] = 3,
+ [14716] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(564), 12,
+ ACTIONS(1464), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51593,7 +50583,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(562), 29,
+ ACTIONS(1466), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51623,11 +50613,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14563] = 3,
+ [14766] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1464), 12,
+ ACTIONS(1468), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51640,7 +50630,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1466), 29,
+ ACTIONS(1470), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51670,11 +50660,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14613] = 3,
+ [14816] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(1472), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51687,7 +50677,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 29,
+ ACTIONS(1474), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51717,11 +50707,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14663] = 3,
+ [14866] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(588), 12,
+ ACTIONS(1476), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51734,7 +50724,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(590), 29,
+ ACTIONS(1478), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51764,11 +50754,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14713] = 3,
+ [14916] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(1480), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51781,7 +50771,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 29,
+ ACTIONS(1482), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51811,11 +50801,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14763] = 3,
+ [14966] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1472), 12,
+ ACTIONS(1484), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51828,7 +50818,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1474), 29,
+ ACTIONS(1486), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51858,11 +50848,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14813] = 3,
+ [15016] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1476), 12,
+ ACTIONS(1484), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51875,7 +50865,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1478), 29,
+ ACTIONS(1486), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51905,13 +50895,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14863] = 4,
- ACTIONS(1484), 1,
- sym_regex_flags,
+ [15066] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1480), 13,
+ ACTIONS(1484), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51924,8 +50912,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- anon_sym_instanceof,
- ACTIONS(1482), 27,
+ ACTIONS(1486), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -51933,6 +50920,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_RPAREN,
+ anon_sym_of,
anon_sym_COLON,
anon_sym_LBRACK,
anon_sym_RBRACK,
@@ -51950,14 +50938,15 @@ 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,
- [14915] = 3,
+ [15116] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1486), 12,
+ ACTIONS(1484), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -51970,7 +50959,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1488), 29,
+ ACTIONS(1486), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52000,11 +50989,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [14965] = 3,
+ [15166] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1490), 12,
+ ACTIONS(529), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52017,7 +51006,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1492), 29,
+ ACTIONS(527), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52047,11 +51036,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15015] = 3,
+ [15216] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1494), 12,
+ ACTIONS(1488), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52064,7 +51053,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1496), 29,
+ ACTIONS(1490), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52094,11 +51083,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15065] = 3,
+ [15266] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(1492), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52111,7 +51100,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 29,
+ ACTIONS(1494), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52141,11 +51130,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15115] = 3,
+ [15316] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(1496), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52158,7 +51147,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 29,
+ ACTIONS(1498), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52188,11 +51177,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15165] = 3,
+ [15366] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(568), 12,
+ ACTIONS(1500), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52205,7 +51194,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(566), 29,
+ ACTIONS(1502), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52235,11 +51224,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15215] = 3,
+ [15416] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1498), 12,
+ ACTIONS(1504), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52252,7 +51241,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1500), 29,
+ ACTIONS(1506), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52282,11 +51271,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15265] = 3,
+ [15466] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1502), 12,
+ ACTIONS(1508), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52299,7 +51288,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1504), 29,
+ ACTIONS(1510), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52329,11 +51318,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15315] = 3,
+ [15516] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(556), 12,
+ ACTIONS(1512), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52346,7 +51335,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(558), 29,
+ ACTIONS(1514), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52376,11 +51365,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15365] = 3,
+ [15566] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1506), 12,
+ ACTIONS(1516), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52393,7 +51382,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1508), 29,
+ ACTIONS(1518), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52423,11 +51412,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15415] = 3,
+ [15616] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(572), 12,
+ ACTIONS(1520), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52440,7 +51429,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(570), 29,
+ ACTIONS(1522), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52470,11 +51459,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15465] = 3,
+ [15666] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1510), 12,
+ ACTIONS(1524), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52487,7 +51476,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1512), 29,
+ ACTIONS(1526), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52517,11 +51506,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15515] = 3,
+ [15716] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1514), 12,
+ ACTIONS(1528), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52534,7 +51523,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1516), 29,
+ ACTIONS(1530), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52564,11 +51553,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15565] = 3,
+ [15766] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1518), 12,
+ ACTIONS(1532), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52581,7 +51570,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1520), 29,
+ ACTIONS(1534), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52611,11 +51600,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15615] = 3,
+ [15816] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1436), 12,
+ ACTIONS(501), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52628,7 +51617,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1438), 29,
+ ACTIONS(499), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52658,11 +51647,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15665] = 3,
+ [15866] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1522), 12,
+ ACTIONS(1536), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52675,7 +51664,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1524), 29,
+ ACTIONS(1538), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52705,11 +51694,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15715] = 3,
+ [15916] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1526), 12,
+ ACTIONS(521), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52722,7 +51711,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1528), 29,
+ ACTIONS(519), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52752,11 +51741,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15765] = 3,
+ [15966] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1530), 12,
+ ACTIONS(1540), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -52769,7 +51758,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1532), 29,
+ ACTIONS(1542), 29,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COMMA,
@@ -52799,351 +51788,197 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15815] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1534), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1536), 29,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
+ [16016] = 19,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- anon_sym_RBRACK,
+ ACTIONS(1337), 1,
anon_sym_DOT,
+ ACTIONS(1349), 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(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [15865] = 5,
- ACTIONS(1545), 1,
- anon_sym_EQ,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1542), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1538), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1554), 2,
anon_sym_AMP,
anon_sym_PIPE,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1540), 24,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
+ ACTIONS(1566), 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,
- [15919] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1547), 12,
- anon_sym_STAR,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1549), 29,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1546), 12,
sym__ternary_qmark,
- anon_sym_LBRACE,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_RPAREN,
- anon_sym_of,
anon_sym_COLON,
- anon_sym_LBRACK,
anon_sym_RBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [15969] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1551), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1553), 29,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
+ [16097] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- anon_sym_RBRACK,
+ ACTIONS(1337), 1,
anon_sym_DOT,
+ ACTIONS(1349), 1,
sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
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,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [16019] = 3,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1555), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1557), 29,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
+ ACTIONS(1566), 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,
- [16069] = 4,
- ACTIONS(1414), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1407), 12,
- anon_sym_STAR,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1409), 27,
- sym__ternary_qmark,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1568), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
- anon_sym_LBRACK,
anon_sym_RBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_AMP_AMP,
- 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,
- [16120] = 25,
- ACTIONS(1342), 1,
+ [16190] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1561), 7,
+ ACTIONS(1584), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
@@ -53151,11 +51986,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_COLON,
anon_sym_RBRACK,
anon_sym_BQUOTE,
- [16213] = 3,
+ [16283] = 4,
+ ACTIONS(1267), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(564), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -53168,17 +52005,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(562), 28,
- sym__automatic_semicolon,
+ ACTIONS(1240), 27,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_else,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_while,
+ anon_sym_RPAREN,
+ anon_sym_COLON,
anon_sym_LBRACK,
+ anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -53197,67 +52033,67 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [16262] = 25,
- ACTIONS(1342), 1,
+ [16334] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1595), 7,
+ ACTIONS(1466), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
@@ -53265,67 +52101,120 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_COLON,
anon_sym_RBRACK,
anon_sym_BQUOTE,
- [16355] = 25,
- ACTIONS(1342), 1,
+ [16427] = 10,
+ ACTIONS(81), 1,
+ anon_sym_BQUOTE,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1592), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ STATE(674), 1,
+ sym_template_string,
+ STATE(681), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1329), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1331), 21,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ [16490] = 25,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1390), 7,
+ ACTIONS(1594), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
@@ -53333,106 +52222,223 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_COLON,
anon_sym_RBRACK,
anon_sym_BQUOTE,
- [16448] = 3,
+ [16583] = 25,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(572), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(570), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1596), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_while,
+ anon_sym_RPAREN,
+ anon_sym_COLON,
+ anon_sym_RBRACK,
+ anon_sym_BQUOTE,
+ [16676] = 25,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
+ ACTIONS(1337), 1,
anon_sym_DOT,
+ ACTIONS(1349), 1,
sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
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,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [16497] = 4,
- ACTIONS(1597), 1,
- sym__automatic_semicolon,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(572), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(570), 27,
- sym__ternary_qmark,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1402), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_while,
+ anon_sym_RPAREN,
+ anon_sym_COLON,
+ anon_sym_RBRACK,
+ anon_sym_BQUOTE,
+ [16769] = 25,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
+ ACTIONS(1337), 1,
anon_sym_DOT,
+ ACTIONS(1349), 1,
sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1552), 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(1556), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1564), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 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(1598), 7,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_RPAREN,
+ anon_sym_COLON,
+ anon_sym_RBRACK,
anon_sym_BQUOTE,
- [16548] = 4,
- ACTIONS(1599), 1,
- sym__automatic_semicolon,
+ [16862] = 7,
+ ACTIONS(81), 1,
+ anon_sym_BQUOTE,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ STATE(674), 1,
+ sym_template_string,
+ STATE(681), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(510), 12,
+ ACTIONS(1329), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -53445,15 +52451,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(508), 27,
+ ACTIONS(1331), 24,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_while,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -53472,68 +52476,67 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [16599] = 25,
- ACTIONS(1342), 1,
+ [16919] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1601), 7,
+ ACTIONS(1446), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
@@ -53541,135 +52544,125 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_COLON,
anon_sym_RBRACK,
anon_sym_BQUOTE,
- [16692] = 25,
- ACTIONS(1342), 1,
+ [17012] = 15,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1554), 7,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1603), 7,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 17,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_RBRACK,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
+ anon_sym_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,
- [16785] = 25,
- ACTIONS(1342), 1,
+ [17085] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1492), 7,
+ ACTIONS(1490), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
@@ -53677,47 +52670,39 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_COLON,
anon_sym_RBRACK,
anon_sym_BQUOTE,
- [16878] = 15,
- ACTIONS(1342), 1,
+ [17178] = 10,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1554), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1607), 7,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
+ anon_sym_GT_GT,
anon_sym_AMP,
anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 17,
+ ACTIONS(1546), 20,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -53727,7 +52712,10 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_RBRACK,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
anon_sym_CARET,
+ anon_sym_PERCENT,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
@@ -53735,112 +52723,127 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
anon_sym_BQUOTE,
- [16951] = 10,
- ACTIONS(1342), 1,
+ [17241] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1583), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 20,
- sym__ternary_qmark,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1498), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_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,
- [17014] = 21,
- ACTIONS(1342), 1,
+ [17334] = 21,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 11,
+ ACTIONS(1546), 11,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -53852,61 +52855,61 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE_PIPE,
anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [17099] = 22,
- ACTIONS(1342), 1,
+ [17419] = 22,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 10,
+ ACTIONS(1546), 10,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -53917,34 +52920,34 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE_PIPE,
anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [17186] = 13,
- ACTIONS(1342), 1,
+ [17506] = 13,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1581), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1607), 8,
+ ACTIONS(1554), 8,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
@@ -53953,7 +52956,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 19,
+ ACTIONS(1546), 19,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -53973,56 +52976,57 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
anon_sym_BQUOTE,
- [17255] = 19,
- ACTIONS(1342), 1,
+ [17575] = 20,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1581), 1,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1607), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 12,
+ ACTIONS(1546), 12,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -54035,57 +53039,59 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_CARET,
anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [17336] = 20,
- ACTIONS(1342), 1,
+ [17658] = 21,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1581), 1,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1607), 1,
- anon_sym_PIPE,
- STATE(540), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 12,
+ ACTIONS(1546), 11,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -54095,85 +53101,33 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_RBRACK,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
- anon_sym_CARET,
anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [17419] = 12,
- ACTIONS(1342), 1,
+ [17743] = 12,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1581), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1607), 10,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 19,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_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,
- [17486] = 10,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
- anon_sym_STAR,
+ ACTIONS(1554), 10,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
@@ -54182,10 +53136,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 20,
+ ACTIONS(1546), 19,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
@@ -54198,7 +53151,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
- anon_sym_PERCENT,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
@@ -54206,261 +53158,67 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
anon_sym_BQUOTE,
- [17549] = 17,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1607), 4,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 14,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [17626] = 23,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 9,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [17715] = 25,
- ACTIONS(1342), 1,
+ [17810] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1609), 7,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_BQUOTE,
- [17808] = 25,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1553), 7,
+ ACTIONS(1600), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
@@ -54468,11 +53226,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_COLON,
anon_sym_RBRACK,
anon_sym_BQUOTE,
- [17901] = 3,
+ [17903] = 4,
+ ACTIONS(1378), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(580), 12,
+ ACTIONS(1371), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -54485,17 +53245,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(578), 28,
- sym__automatic_semicolon,
+ ACTIONS(1373), 27,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_else,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_while,
+ anon_sym_RPAREN,
+ anon_sym_COLON,
anon_sym_LBRACK,
+ anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -54514,25 +53273,26 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [17950] = 10,
- ACTIONS(83), 1,
- anon_sym_BQUOTE,
- ACTIONS(1611), 1,
+ [17954] = 10,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1617), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- STATE(639), 1,
- sym_template_string,
- STATE(720), 1,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1338), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1554), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -54545,41 +53305,34 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1340), 21,
- sym__automatic_semicolon,
+ ACTIONS(1546), 20,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
- 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,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- [18013] = 7,
- ACTIONS(83), 1,
anon_sym_BQUOTE,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- STATE(639), 1,
- sym_template_string,
- STATE(720), 1,
- sym_arguments,
+ [18017] = 4,
+ ACTIONS(1411), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1338), 12,
+ ACTIONS(1404), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -54592,14 +53345,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1340), 24,
- sym__automatic_semicolon,
+ ACTIONS(1406), 27,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
+ anon_sym_RPAREN,
+ anon_sym_COLON,
anon_sym_LBRACK,
+ anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -54617,79 +53372,74 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- [18070] = 25,
- ACTIONS(1342), 1,
+ anon_sym_BQUOTE,
+ [18068] = 17,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1500), 7,
+ ACTIONS(1554), 4,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 14,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_RBRACK,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [18163] = 3,
+ [18145] = 4,
+ ACTIONS(511), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(568), 12,
+ ACTIONS(507), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -54702,17 +53452,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(566), 28,
- sym__automatic_semicolon,
+ ACTIONS(509), 27,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_else,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_while,
+ anon_sym_RPAREN,
+ anon_sym_COLON,
anon_sym_LBRACK,
+ anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -54731,203 +53480,133 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [18212] = 25,
- ACTIONS(1342), 1,
+ [18196] = 23,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1532), 7,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_BQUOTE,
- [18305] = 25,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1536), 7,
+ ACTIONS(1546), 9,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_RBRACK,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [18398] = 25,
- ACTIONS(1342), 1,
+ [18285] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1619), 7,
+ ACTIONS(1502), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
@@ -54935,13 +53614,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_COLON,
anon_sym_RBRACK,
anon_sym_BQUOTE,
- [18491] = 4,
- ACTIONS(1272), 1,
+ [18378] = 5,
+ ACTIONS(511), 1,
anon_sym_EQ,
+ ACTIONS(517), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(505), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -54954,16 +53635,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 27,
+ ACTIONS(503), 25,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
+ anon_sym_of,
anon_sym_LBRACK,
- anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -54982,13 +53661,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [18542] = 4,
- ACTIONS(1545), 1,
+ [18430] = 6,
+ ACTIONS(511), 1,
anon_sym_EQ,
+ ACTIONS(513), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1538), 12,
+ ACTIONS(503), 2,
+ anon_sym_else,
+ anon_sym_while,
+ ACTIONS(507), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55001,16 +53685,12 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1540), 27,
+ ACTIONS(509), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
anon_sym_LBRACK,
- anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -55029,13 +53709,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [18593] = 4,
- ACTIONS(516), 1,
+ [18484] = 4,
+ ACTIONS(1378), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(512), 12,
+ ACTIONS(1371), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55048,16 +53728,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(514), 27,
+ ACTIONS(1373), 26,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
+ anon_sym_of,
anon_sym_LBRACK,
- anon_sym_RBRACK,
anon_sym_DOT,
sym_optional_chain,
anon_sym_AMP_AMP,
@@ -55076,75 +53755,78 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [18644] = 21,
- ACTIONS(1342), 1,
+ [18534] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1569), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1581), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1607), 1,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- STATE(540), 1,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 11,
- sym__ternary_qmark,
+ ACTIONS(1602), 6,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [18729] = 3,
+ [18626] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1376), 12,
+ ACTIONS(1532), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55157,7 +53839,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1378), 27,
+ ACTIONS(1534), 27,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55185,15 +53867,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [18777] = 5,
- ACTIONS(83), 1,
- anon_sym_BQUOTE,
- STATE(639), 1,
- sym_template_string,
+ [18674] = 9,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1368), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1355), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55206,17 +53897,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1370), 25,
+ ACTIONS(1357), 20,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -55230,15 +53917,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- [18829] = 4,
- ACTIONS(1545), 1,
+ anon_sym_BQUOTE,
+ [18734] = 4,
+ ACTIONS(1411), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1538), 12,
+ ACTIONS(1404), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55251,7 +53937,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1540), 26,
+ ACTIONS(1406), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55278,24 +53964,21 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [18879] = 9,
- ACTIONS(1611), 1,
+ [18784] = 8,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1358), 12,
+ ACTIONS(1345), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55308,7 +53991,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1360), 20,
+ ACTIONS(1347), 22,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55328,22 +54011,16 @@ 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,
- [18939] = 8,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- STATE(726), 1,
- sym_arguments,
+ [18842] = 4,
+ ACTIONS(1242), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1350), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55356,13 +54033,17 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1352), 22,
+ ACTIONS(1240), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -55379,21 +54060,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [18997] = 8,
- ACTIONS(83), 1,
- anon_sym_BQUOTE,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1617), 1,
- sym_optional_chain,
- STATE(639), 1,
- sym_template_string,
+ [18892] = 4,
+ ACTIONS(511), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1368), 12,
+ ACTIONS(507), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55406,7 +54079,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1370), 22,
+ ACTIONS(509), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55414,6 +54087,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -55429,15 +54105,22 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- [19055] = 5,
- ACTIONS(516), 1,
- anon_sym_EQ,
- ACTIONS(1599), 1,
- sym__automatic_semicolon,
+ anon_sym_BQUOTE,
+ [18942] = 8,
+ ACTIONS(81), 1,
+ anon_sym_BQUOTE,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1592), 1,
+ sym_optional_chain,
+ STATE(674), 1,
+ sym_template_string,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(510), 12,
+ ACTIONS(1351), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55450,16 +54133,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(508), 25,
+ ACTIONS(1353), 22,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -55475,79 +54156,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
+ [19000] = 5,
+ ACTIONS(81), 1,
anon_sym_BQUOTE,
- [19107] = 25,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1625), 6,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [19199] = 3,
+ STATE(674), 1,
+ sym_template_string,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1506), 12,
+ ACTIONS(1351), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55560,7 +54177,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1508), 27,
+ ACTIONS(1353), 25,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55568,7 +54185,6 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_COLON,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -55587,14 +54203,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_instanceof,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [19247] = 4,
- ACTIONS(1414), 1,
- anon_sym_EQ,
+ [19052] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1407), 12,
+ ACTIONS(1536), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55607,7 +54220,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1409), 26,
+ ACTIONS(1538), 27,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55615,6 +54228,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_COLON,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -55634,18 +54248,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19297] = 6,
- ACTIONS(516), 1,
- anon_sym_EQ,
- ACTIONS(518), 1,
- sym__automatic_semicolon,
+ [19100] = 9,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(508), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(512), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1361), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55658,14 +54278,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(514), 23,
+ ACTIONS(1363), 20,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_LPAREN,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ anon_sym_of,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -55679,16 +54298,17 @@ 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,
- [19351] = 4,
- ACTIONS(516), 1,
- anon_sym_EQ,
+ [19160] = 5,
+ ACTIONS(599), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(512), 12,
+ ACTIONS(591), 2,
+ anon_sym_else,
+ anon_sym_while,
+ ACTIONS(595), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55701,14 +54321,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(514), 26,
- sym__automatic_semicolon,
+ ACTIONS(597), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -55728,24 +54345,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19401] = 9,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- STATE(726), 1,
- sym_arguments,
+ [19211] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1364), 12,
+ ACTIONS(1472), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55758,13 +54362,17 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1366), 20,
+ ACTIONS(1474), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -55778,14 +54386,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19461] = 4,
- ACTIONS(1241), 1,
- anon_sym_EQ,
+ [19258] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(1484), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55798,7 +54406,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 26,
+ ACTIONS(1486), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55825,11 +54433,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19511] = 3,
+ [19305] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(1484), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55842,7 +54450,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 26,
+ ACTIONS(1486), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55869,11 +54477,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19558] = 3,
+ [19352] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1452), 12,
+ ACTIONS(1488), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -55886,7 +54494,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1454), 26,
+ ACTIONS(1490), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -55913,136 +54521,143 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19605] = 20,
- ACTIONS(1607), 1,
- anon_sym_PIPE,
- ACTIONS(1611), 1,
+ [19399] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1622), 1,
+ anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 10,
+ ACTIONS(1490), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [19686] = 21,
- ACTIONS(1607), 1,
- anon_sym_PIPE,
- ACTIONS(1611), 1,
+ [19490] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1622), 1,
+ anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- STATE(726), 1,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 9,
+ ACTIONS(1594), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [19769] = 4,
- ACTIONS(1301), 1,
- anon_sym_EQ,
+ [19581] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(1400), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56055,13 +54670,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 25,
+ ACTIONS(1402), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -56081,16 +54697,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19818] = 5,
- ACTIONS(592), 1,
- sym__automatic_semicolon,
+ [19628] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(584), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(588), 12,
+ ACTIONS(1476), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56103,11 +54714,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(590), 23,
+ ACTIONS(1478), 26,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -56127,11 +54741,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19869] = 3,
+ [19675] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1547), 12,
+ ACTIONS(1492), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56144,7 +54758,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1549), 26,
+ ACTIONS(1494), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -56171,18 +54785,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19916] = 5,
- ACTIONS(1306), 1,
- anon_sym_EQ,
+ [19722] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1303), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1237), 12,
+ ACTIONS(1496), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56195,9 +54802,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 21,
+ ACTIONS(1498), 26,
+ sym__automatic_semicolon,
sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -56217,64 +54829,77 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [19967] = 12,
- ACTIONS(1611), 1,
+ [19769] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1639), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
+ anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1607), 10,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
+ ACTIONS(1498), 5,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
anon_sym_BQUOTE,
- [20032] = 3,
+ [19860] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1518), 12,
+ ACTIONS(1500), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56287,7 +54912,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1520), 26,
+ ACTIONS(1502), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -56314,26 +54939,84 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20079] = 10,
- ACTIONS(1611), 1,
+ [19907] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1641), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
+ anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
+ ACTIONS(1608), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1634), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1636), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1502), 5,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_BQUOTE,
+ [19998] = 5,
+ ACTIONS(1304), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1302), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56346,30 +55029,33 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 18,
- sym__automatic_semicolon,
+ ACTIONS(1240), 21,
sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
+ 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,
- [20140] = 3,
+ [20049] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1436), 12,
+ ACTIONS(1504), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56382,7 +55068,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1438), 26,
+ ACTIONS(1506), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -56409,133 +55095,99 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20187] = 17,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- STATE(726), 1,
- sym_arguments,
+ [20096] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(545), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1629), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1607), 4,
+ anon_sym_GT_GT,
anon_sym_AMP,
anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 12,
+ ACTIONS(547), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20262] = 23,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- STATE(726), 1,
- sym_arguments,
+ [20143] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1508), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 7,
+ ACTIONS(1510), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20349] = 3,
+ [20190] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1380), 12,
+ ACTIONS(1512), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56548,7 +55200,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1382), 26,
+ ACTIONS(1514), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -56575,11 +55227,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20396] = 3,
+ [20237] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1448), 12,
+ ACTIONS(1380), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56592,7 +55244,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1450), 26,
+ ACTIONS(1382), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -56619,92 +55271,101 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20443] = 25,
- ACTIONS(1611), 1,
+ [20284] = 5,
+ ACTIONS(579), 1,
+ sym__automatic_semicolon,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(571), 2,
+ anon_sym_else,
+ anon_sym_while,
+ ACTIONS(575), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(577), 23,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ anon_sym_SEMI,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [20335] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1516), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1619), 5,
+ ACTIONS(1518), 26,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_BQUOTE,
- [20534] = 10,
- ACTIONS(1611), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1641), 1,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
anon_sym_STAR_STAR,
- STATE(726), 1,
- sym_arguments,
+ anon_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,
+ [20382] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
+ ACTIONS(1520), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56717,30 +55378,38 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 18,
+ ACTIONS(1522), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20595] = 3,
+ [20429] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1522), 12,
+ ACTIONS(1384), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56753,7 +55422,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1524), 26,
+ ACTIONS(1386), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -56780,11 +55449,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20642] = 3,
+ [20476] = 5,
+ ACTIONS(559), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1432), 12,
+ ACTIONS(551), 2,
+ anon_sym_else,
+ anon_sym_while,
+ ACTIONS(555), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56797,14 +55471,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1434), 26,
- sym__automatic_semicolon,
+ ACTIONS(557), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -56824,11 +55495,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20689] = 3,
+ [20527] = 4,
+ ACTIONS(1282), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1440), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56841,14 +55514,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1442), 26,
+ ACTIONS(1240), 25,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -56868,11 +55540,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20736] = 3,
+ [20576] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(1413), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56885,7 +55557,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 26,
+ ACTIONS(1415), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -56912,11 +55584,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20783] = 3,
+ [20623] = 5,
+ ACTIONS(1242), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1510), 12,
+ ACTIONS(1309), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56929,14 +55608,55 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1512), 26,
+ ACTIONS(1240), 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,
+ [20674] = 5,
+ ACTIONS(569), 1,
sym__automatic_semicolon,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(561), 2,
+ anon_sym_else,
+ anon_sym_while,
+ ACTIONS(565), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(567), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -56956,11 +55676,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20830] = 3,
+ [20725] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1472), 12,
+ ACTIONS(575), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -56973,7 +55693,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1474), 26,
+ ACTIONS(577), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57000,11 +55720,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20877] = 3,
+ [20772] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1464), 12,
+ ACTIONS(555), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57017,7 +55737,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1466), 26,
+ ACTIONS(557), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57044,11 +55764,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20924] = 3,
+ [20819] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1372), 12,
+ ACTIONS(565), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57061,7 +55781,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1374), 26,
+ ACTIONS(567), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57088,11 +55808,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [20971] = 3,
+ [20866] = 5,
+ ACTIONS(589), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1416), 12,
+ ACTIONS(581), 2,
+ anon_sym_else,
+ anon_sym_while,
+ ACTIONS(585), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57105,14 +55830,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1418), 26,
- sym__automatic_semicolon,
+ ACTIONS(587), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -57132,11 +55854,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21018] = 3,
+ [20917] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(588), 12,
+ ACTIONS(1388), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57149,7 +55871,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(590), 26,
+ ACTIONS(1390), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57176,11 +55898,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21065] = 3,
+ [20964] = 5,
+ ACTIONS(609), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(601), 2,
+ anon_sym_else,
+ anon_sym_while,
+ ACTIONS(605), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57193,14 +55920,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 26,
- sym__automatic_semicolon,
+ ACTIONS(607), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -57220,77 +55944,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21112] = 25,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
+ [21015] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1645), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1595), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_BQUOTE,
- [21203] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1388), 12,
+ ACTIONS(585), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57303,7 +55961,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1390), 26,
+ ACTIONS(587), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57330,11 +55988,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21250] = 3,
+ [21062] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(595), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57347,7 +56005,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 26,
+ ACTIONS(597), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57374,11 +56032,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21297] = 3,
+ [21109] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1468), 12,
+ ACTIONS(605), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57391,7 +56049,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1470), 26,
+ ACTIONS(607), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57418,16 +56076,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21344] = 5,
- ACTIONS(606), 1,
+ [21156] = 5,
+ ACTIONS(539), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(598), 2,
+ ACTIONS(531), 2,
anon_sym_else,
anon_sym_while,
- ACTIONS(602), 12,
+ ACTIONS(535), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57440,7 +56098,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(604), 23,
+ ACTIONS(537), 23,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_LPAREN,
@@ -57464,11 +56122,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21395] = 3,
+ [21207] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1456), 12,
+ ACTIONS(535), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57481,7 +56139,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1458), 26,
+ ACTIONS(537), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57508,77 +56166,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21442] = 25,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1645), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1390), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_BQUOTE,
- [21533] = 3,
+ [21254] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1526), 12,
+ ACTIONS(1417), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57591,7 +56183,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1528), 26,
+ ACTIONS(1419), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57618,202 +56210,55 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21580] = 21,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- STATE(726), 1,
- sym_arguments,
+ [21301] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1480), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1645), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 9,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [21663] = 25,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1609), 5,
+ ACTIONS(1482), 26,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_BQUOTE,
- [21754] = 22,
- ACTIONS(1611), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
anon_sym_AMP_AMP,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- STATE(726), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
+ anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1645), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 8,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_PIPE,
anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21839] = 3,
+ [21348] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1498), 12,
+ ACTIONS(1484), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57826,7 +56271,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1500), 26,
+ ACTIONS(1486), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -57853,16 +56298,16 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21886] = 5,
- ACTIONS(618), 1,
+ [21395] = 5,
+ ACTIONS(549), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(610), 2,
+ ACTIONS(541), 2,
anon_sym_else,
anon_sym_while,
- ACTIONS(614), 12,
+ ACTIONS(545), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57875,7 +56320,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(616), 23,
+ ACTIONS(547), 23,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_LPAREN,
@@ -57899,77 +56344,55 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [21937] = 25,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
+ [21446] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1484), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1500), 5,
+ ACTIONS(1486), 26,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22028] = 3,
+ [21493] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1502), 12,
+ ACTIONS(1524), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -57982,7 +56405,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1504), 26,
+ ACTIONS(1526), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -58009,11 +56432,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22075] = 3,
+ [21540] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1530), 12,
+ ACTIONS(1528), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58026,7 +56449,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1532), 26,
+ ACTIONS(1530), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -58053,214 +56476,260 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22122] = 25,
- ACTIONS(1611), 1,
+ [21587] = 4,
+ ACTIONS(1642), 1,
+ sym_regex_flags,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1365), 14,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_of,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1367), 23,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [21636] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1595), 5,
+ ACTIONS(1600), 5,
sym__automatic_semicolon,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_BQUOTE,
- [22213] = 25,
- ACTIONS(1611), 1,
+ [21727] = 5,
+ ACTIONS(1378), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1644), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1371), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1373), 21,
+ sym__ternary_qmark,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
- anon_sym_GT_GT,
- ACTIONS(1673), 1,
- anon_sym_AMP,
- ACTIONS(1675), 1,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
anon_sym_CARET,
- ACTIONS(1677), 1,
- anon_sym_PIPE,
- ACTIONS(1681), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [21778] = 5,
+ ACTIONS(1411), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1646), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1404), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1671), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1685), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1390), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_of,
- anon_sym_BQUOTE,
- [22304] = 25,
- ACTIONS(1611), 1,
+ ACTIONS(1406), 21,
+ sym__ternary_qmark,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [21829] = 5,
+ ACTIONS(511), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1648), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(507), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(509), 21,
+ sym__ternary_qmark,
+ anon_sym_LPAREN,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- ACTIONS(1532), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22395] = 5,
- ACTIONS(628), 1,
- sym__automatic_semicolon,
+ [21880] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(620), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(624), 12,
+ ACTIONS(1392), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58273,11 +56742,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(626), 23,
+ ACTIONS(1394), 26,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -58297,11 +56769,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22446] = 3,
+ [21927] = 5,
+ ACTIONS(1295), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1534), 12,
+ ACTIONS(1292), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58314,14 +56793,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1536), 26,
- sym__automatic_semicolon,
+ ACTIONS(1240), 21,
sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -58341,11 +56815,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22493] = 3,
+ [21978] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(602), 12,
+ ACTIONS(1351), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58358,7 +56832,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(604), 26,
+ ACTIONS(1353), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -58385,77 +56859,77 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22540] = 25,
- ACTIONS(1611), 1,
+ [22025] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1601), 5,
+ ACTIONS(1568), 5,
sym__automatic_semicolon,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_BQUOTE,
- [22631] = 3,
+ [22116] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(614), 12,
+ ACTIONS(1388), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58468,7 +56942,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(616), 26,
+ ACTIONS(1390), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -58495,11 +56969,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22678] = 3,
+ [22163] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(624), 12,
+ ACTIONS(1421), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58512,7 +56986,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(626), 26,
+ ACTIONS(1423), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -58539,199 +57013,187 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22725] = 25,
- ACTIONS(1611), 1,
+ [22210] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1425), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1427), 26,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
- anon_sym_GT_GT,
- ACTIONS(1673), 1,
- anon_sym_AMP,
- ACTIONS(1675), 1,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
anon_sym_CARET,
- ACTIONS(1677), 1,
- anon_sym_PIPE,
- ACTIONS(1681), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [22257] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1238), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1671), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1685), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1603), 5,
+ ACTIONS(1240), 26,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_BQUOTE,
- [22816] = 25,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
- anon_sym_GT_GT,
- ACTIONS(1673), 1,
- anon_sym_AMP,
- ACTIONS(1675), 1,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
anon_sym_CARET,
- ACTIONS(1677), 1,
- anon_sym_PIPE,
- ACTIONS(1681), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [22304] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1396), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1671), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1685), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1492), 5,
+ ACTIONS(1398), 26,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_BQUOTE,
- [22907] = 15,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1669), 1,
- anon_sym_GT_GT,
- ACTIONS(1681), 1,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
- sym_arguments,
+ anon_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,
+ [22351] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1429), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1671), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1679), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1607), 7,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
+ anon_sym_GT_GT,
anon_sym_AMP,
anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 15,
+ ACTIONS(1431), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [22978] = 3,
+ [22398] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1368), 12,
+ ACTIONS(1433), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58744,7 +57206,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1370), 26,
+ ACTIONS(1435), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -58771,18 +57233,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [23025] = 5,
- ACTIONS(1241), 1,
- anon_sym_EQ,
+ [22445] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1318), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1237), 12,
+ ACTIONS(1437), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -58795,9 +57250,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 21,
+ ACTIONS(1439), 26,
+ sym__automatic_semicolon,
sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -58817,441 +57277,523 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [23076] = 21,
- ACTIONS(1611), 1,
+ [22492] = 4,
+ ACTIONS(1642), 1,
+ sym_regex_flags,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1365), 13,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1367), 24,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ anon_sym_SEMI,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
sym_optional_chain,
- ACTIONS(1669), 1,
- anon_sym_GT_GT,
- ACTIONS(1673), 1,
- anon_sym_AMP,
- ACTIONS(1675), 1,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
anon_sym_CARET,
- ACTIONS(1677), 1,
- anon_sym_PIPE,
- ACTIONS(1681), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
- sym_arguments,
+ 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,
+ [22541] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1540), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1671), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1685), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 9,
+ ACTIONS(1542), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [23159] = 22,
- ACTIONS(1611), 1,
+ [22588] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- ACTIONS(1669), 1,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 8,
+ ACTIONS(1598), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [23244] = 13,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1681), 1,
- anon_sym_PERCENT,
- ACTIONS(1683), 1,
- anon_sym_STAR_STAR,
- STATE(726), 1,
- sym_arguments,
+ [22679] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1444), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1679), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1607), 8,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
anon_sym_AMP,
anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 17,
+ ACTIONS(1446), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [23311] = 19,
- ACTIONS(1611), 1,
+ [22726] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1669), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1681), 1,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
+ anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1607), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 10,
+ ACTIONS(1446), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [23390] = 20,
- ACTIONS(1607), 1,
- anon_sym_PIPE,
- ACTIONS(1611), 1,
+ [22817] = 15,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1669), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
- anon_sym_AMP,
- ACTIONS(1681), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1554), 7,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 10,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 15,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_CARET,
+ anon_sym_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,
- [23471] = 21,
- ACTIONS(1607), 1,
+ [22888] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1448), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
anon_sym_PIPE,
- ACTIONS(1611), 1,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1450), 26,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [22935] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1669), 1,
+ ACTIONS(1654), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1664), 1,
anon_sym_CARET,
- ACTIONS(1681), 1,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1680), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 9,
+ ACTIONS(1594), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [23554] = 12,
- ACTIONS(1611), 1,
+ [23026] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1681), 1,
+ ACTIONS(1654), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
+ anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1680), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1607), 10,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
+ ACTIONS(1402), 5,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_BQUOTE,
- [23619] = 10,
- ACTIONS(1611), 1,
+ [23117] = 10,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
+ ACTIONS(1554), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -59264,12 +57806,12 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 18,
+ ACTIONS(1546), 18,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
@@ -59283,270 +57825,280 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
anon_sym_BQUOTE,
- [23680] = 17,
- ACTIONS(1611), 1,
+ [23178] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1669), 1,
+ ACTIONS(1654), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1681), 1,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
+ anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1680), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1663), 3,
+ ACTIONS(1676), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1607), 4,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 12,
+ ACTIONS(1568), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [23755] = 23,
- ACTIONS(1611), 1,
+ [23269] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1664), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1666), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1680), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 7,
+ ACTIONS(1598), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [23842] = 25,
- ACTIONS(1611), 1,
+ [23360] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1664), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1666), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ ACTIONS(1680), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
+ ACTIONS(1682), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1609), 5,
+ ACTIONS(1446), 5,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
anon_sym_BQUOTE,
- [23933] = 25,
- ACTIONS(1611), 1,
+ [23451] = 15,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
- anon_sym_AMP,
- ACTIONS(1675), 1,
- anon_sym_CARET,
- ACTIONS(1677), 1,
- anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1554), 7,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1553), 5,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 15,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
+ anon_sym_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,
- [24024] = 5,
- ACTIONS(640), 1,
- sym__automatic_semicolon,
+ [23522] = 10,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(632), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(636), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1554), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -59559,461 +58111,474 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(638), 23,
+ ACTIONS(1546), 18,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ anon_sym_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,
- [24075] = 25,
- ACTIONS(1611), 1,
+ [23583] = 21,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1500), 5,
+ ACTIONS(1546), 9,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [24166] = 25,
- ACTIONS(1611), 1,
+ [23666] = 21,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1664), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1666), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1532), 5,
+ ACTIONS(1546), 9,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [24257] = 25,
- ACTIONS(1611), 1,
+ [23749] = 22,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1664), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1666), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1536), 5,
+ ACTIONS(1546), 8,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [24348] = 5,
- ACTIONS(540), 1,
- sym__automatic_semicolon,
+ [23834] = 13,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1670), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(532), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(536), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1668), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1554), 8,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
anon_sym_AMP,
anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(538), 23,
+ ACTIONS(1546), 17,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ anon_sym_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,
- [24399] = 25,
- ACTIONS(1611), 1,
+ [23901] = 19,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1554), 2,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1536), 5,
+ ACTIONS(1546), 10,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [24490] = 25,
- ACTIONS(1611), 1,
+ [23980] = 20,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
- anon_sym_CARET,
- ACTIONS(1677), 1,
- anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1619), 5,
+ ACTIONS(1546), 10,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [24581] = 3,
+ [24061] = 21,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
+ anon_sym_CARET,
+ ACTIONS(1670), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1384), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1386), 26,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1546), 9,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [24144] = 12,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 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(1670), 1,
anon_sym_PERCENT,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [24628] = 5,
- ACTIONS(550), 1,
- sym__automatic_semicolon,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(542), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(546), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1554), 10,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
@@ -60022,38 +58587,46 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(548), 23,
+ ACTIONS(1546), 17,
+ sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ anon_sym_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,
- [24679] = 3,
+ [24209] = 10,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(636), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1554), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -60066,283 +58639,370 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(638), 26,
+ ACTIONS(1546), 18,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
anon_sym_PERCENT,
- anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [24726] = 3,
+ [24270] = 17,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1670), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(536), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- anon_sym_GT_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1554), 4,
anon_sym_AMP,
anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(538), 26,
+ ACTIONS(1546), 12,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [24345] = 23,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [24773] = 3,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(546), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(548), 26,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1546), 7,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [24432] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ ACTIONS(1680), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [24820] = 5,
- ACTIONS(560), 1,
- sym__automatic_semicolon,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(552), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(556), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(558), 23,
- sym__ternary_qmark,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1584), 5,
+ sym__automatic_semicolon,
anon_sym_COMMA,
- anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ [24523] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ ACTIONS(1680), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [24871] = 3,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(556), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(558), 26,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1466), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_BQUOTE,
+ [24614] = 22,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [24918] = 3,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1551), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1553), 26,
+ ACTIONS(1636), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1546), 8,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [24965] = 13,
- ACTIONS(1611), 1,
+ [24699] = 13,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1639), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1607), 8,
+ ACTIONS(1554), 8,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
@@ -60351,7 +59011,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 17,
+ ACTIONS(1546), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -60369,277 +59029,478 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
anon_sym_BQUOTE,
- [25032] = 3,
+ [24766] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1654), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
+ anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1680), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1392), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1394), 26,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1490), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_BQUOTE,
+ [24857] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ ACTIONS(1680), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [25079] = 4,
- ACTIONS(1320), 1,
- anon_sym_EQ,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 25,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1498), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_BQUOTE,
+ [24948] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ ACTIONS(1680), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [25128] = 3,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1399), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1676), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1502), 5,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ [25039] = 19,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1554), 2,
anon_sym_AMP,
anon_sym_PIPE,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1401), 26,
+ ACTIONS(1636), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1546), 10,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
anon_sym_CARET,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [25118] = 20,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
+ STATE(651), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1634), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 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(1546), 10,
+ sym__automatic_semicolon,
+ sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [25175] = 25,
- ACTIONS(1611), 1,
+ [25199] = 21,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1622), 1,
+ anon_sym_CARET,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1553), 5,
+ ACTIONS(1546), 9,
sym__automatic_semicolon,
+ sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [25266] = 25,
- ACTIONS(1611), 1,
+ [25282] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1654), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
+ ACTIONS(1656), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1664), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1666), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1670), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1672), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ ACTIONS(1680), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
+ ACTIONS(1682), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1671), 2,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1663), 3,
+ ACTIONS(1652), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1685), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1561), 5,
+ ACTIONS(1600), 5,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_of,
anon_sym_BQUOTE,
- [25357] = 3,
+ [25373] = 12,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1476), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1554), 10,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
@@ -60648,41 +59509,46 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1478), 26,
+ ACTIONS(1546), 17,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [25404] = 3,
+ [25438] = 10,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1555), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1554), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -60695,142 +59561,152 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1557), 26,
+ ACTIONS(1546), 18,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
anon_sym_PERCENT,
- anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [25451] = 3,
+ [25499] = 17,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1420), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- anon_sym_GT_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1554), 4,
anon_sym_AMP,
anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1422), 26,
+ ACTIONS(1546), 12,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [25498] = 19,
- ACTIONS(1611), 1,
+ [25574] = 23,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1639), 1,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
+ anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1607), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 10,
+ ACTIONS(1546), 7,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
anon_sym_QMARK_QMARK,
anon_sym_BQUOTE,
- [25577] = 3,
+ [25661] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1424), 12,
+ ACTIONS(1452), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -60843,7 +59719,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1426), 26,
+ ACTIONS(1454), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -60870,13 +59746,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [25624] = 4,
- ACTIONS(1695), 1,
- sym_regex_flags,
+ [25708] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1480), 13,
+ ACTIONS(1456), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -60889,14 +59763,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- anon_sym_instanceof,
- ACTIONS(1482), 24,
+ ACTIONS(1458), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -60912,14 +59786,17 @@ 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,
- [25673] = 3,
+ [25755] = 4,
+ ACTIONS(1286), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1436), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -60932,11 +59809,10 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1438), 26,
+ ACTIONS(1240), 25,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
@@ -60959,16 +59835,13 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [25720] = 4,
- ACTIONS(1695), 1,
- sym_regex_flags,
+ [25804] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1480), 14,
+ ACTIONS(1460), 12,
anon_sym_STAR,
anon_sym_in,
- anon_sym_of,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -60979,13 +59852,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- anon_sym_instanceof,
- ACTIONS(1482), 23,
+ ACTIONS(1462), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -61001,104 +59875,147 @@ 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,
- [25769] = 3,
+ [25851] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(1604), 1,
+ sym_optional_chain,
+ ACTIONS(1654), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1658), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1662), 1,
+ anon_sym_AMP,
+ ACTIONS(1664), 1,
+ anon_sym_CARET,
+ ACTIONS(1666), 1,
+ anon_sym_PIPE,
+ ACTIONS(1670), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1680), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1682), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1514), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1650), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1660), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1516), 26,
+ ACTIONS(1678), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1652), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1674), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1596), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_of,
+ anon_sym_BQUOTE,
+ [25942] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [25816] = 5,
- ACTIONS(1311), 1,
- anon_sym_EQ,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1309), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1237), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 21,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 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(1584), 5,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
anon_sym_BQUOTE,
- [25867] = 3,
+ [26033] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1428), 12,
+ ACTIONS(1464), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -61111,7 +60028,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1430), 26,
+ ACTIONS(1466), 26,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -61138,64 +60055,77 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [25914] = 5,
- ACTIONS(1545), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1697), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1538), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1540), 21,
- sym__ternary_qmark,
+ [26080] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1634), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 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(1466), 5,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
anon_sym_BQUOTE,
- [25965] = 5,
- ACTIONS(1414), 1,
- anon_sym_EQ,
+ [26171] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1699), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(1407), 12,
+ ACTIONS(1468), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -61208,9 +60138,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1409), 21,
+ ACTIONS(1470), 26,
+ sym__automatic_semicolon,
sym__ternary_qmark,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -61230,167 +60165,216 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [26016] = 5,
- ACTIONS(516), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1701), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- ACTIONS(512), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(514), 21,
- sym__ternary_qmark,
+ [26218] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [26067] = 3,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1486), 12,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1488), 26,
+ ACTIONS(1636), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1596), 5,
sym__automatic_semicolon,
- sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
+ anon_sym_BQUOTE,
+ [26309] = 25,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1634), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 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(1402), 5,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
anon_sym_BQUOTE,
- [26114] = 25,
- ACTIONS(1611), 1,
+ [26400] = 27,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ ACTIONS(1684), 1,
+ anon_sym_COMMA,
+ ACTIONS(1687), 1,
+ anon_sym_RBRACE,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1598), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1603), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_BQUOTE,
- [26205] = 3,
+ [26494] = 5,
+ ACTIONS(1267), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1490), 12,
+ ACTIONS(1315), 3,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RBRACK,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -61403,14 +60387,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1492), 26,
- sym__automatic_semicolon,
+ ACTIONS(1240), 21,
sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -61430,245 +60409,281 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [26252] = 25,
- ACTIONS(1611), 1,
+ [26544] = 26,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1654), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1656), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1658), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1662), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
+ ACTIONS(1664), 1,
anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1666), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1670), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1672), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1680), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1682), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ ACTIONS(1691), 1,
+ anon_sym_in,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1650), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1652), 2,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1660), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1668), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1676), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1678), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1674), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1492), 5,
+ ACTIONS(1689), 4,
sym__automatic_semicolon,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_SEMI,
- anon_sym_BQUOTE,
- [26343] = 3,
+ anon_sym_of,
+ [26636] = 25,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1403), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1405), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1694), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ [26726] = 27,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_of,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [26390] = 15,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- STATE(726), 1,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ ACTIONS(1696), 1,
+ anon_sym_COMMA,
+ ACTIONS(1699), 1,
+ anon_sym_RBRACE,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1598), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1607), 7,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 15,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_BQUOTE,
- [26461] = 25,
- ACTIONS(1611), 1,
+ [26820] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1601), 5,
- sym__automatic_semicolon,
+ ACTIONS(1701), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_BQUOTE,
- [26552] = 3,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ [26910] = 6,
+ ACTIONS(1378), 1,
+ anon_sym_EQ,
+ ACTIONS(1644), 1,
+ anon_sym_of,
+ ACTIONS(1703), 1,
+ anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1494), 12,
+ ACTIONS(1371), 11,
anon_sym_STAR,
- anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -61679,14 +60694,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1496), 26,
- sym__automatic_semicolon,
+ ACTIONS(1373), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -61706,13 +60718,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [26599] = 3,
+ [26962] = 6,
+ ACTIONS(1411), 1,
+ anon_sym_EQ,
+ ACTIONS(1646), 1,
+ anon_sym_of,
+ ACTIONS(1706), 1,
+ anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1460), 12,
+ ACTIONS(1404), 11,
anon_sym_STAR,
- anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -61723,14 +60740,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1462), 26,
- sym__automatic_semicolon,
+ ACTIONS(1406), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -61750,79 +60764,18 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [26646] = 25,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1645), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ [27014] = 6,
+ ACTIONS(511), 1,
+ anon_sym_EQ,
+ ACTIONS(1648), 1,
+ anon_sym_of,
+ ACTIONS(1709), 1,
anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1561), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_BQUOTE,
- [26737] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1444), 12,
+ ACTIONS(507), 11,
anon_sym_STAR,
- anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -61833,14 +60786,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1446), 26,
- sym__automatic_semicolon,
+ ACTIONS(509), 23,
sym__ternary_qmark,
anon_sym_COMMA,
- anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -61860,26 +60810,15 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [26784] = 10,
- ACTIONS(1611), 1,
+ [27066] = 5,
+ ACTIONS(1712), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1683), 1,
- anon_sym_STAR_STAR,
- STATE(726), 1,
- sym_arguments,
+ ACTIONS(1715), 1,
+ anon_sym_COLON,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -61892,103 +60831,42 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 18,
+ ACTIONS(1240), 23,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
anon_sym_SEMI,
- anon_sym_of,
+ anon_sym_LBRACK,
+ anon_sym_DOT,
+ sym_optional_chain,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
anon_sym_PERCENT,
+ anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_BQUOTE,
- [26845] = 27,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1631), 1,
- anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- ACTIONS(1703), 1,
- anon_sym_COMMA,
- ACTIONS(1706), 1,
- anon_sym_RBRACE,
- STATE(726), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1595), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(1623), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1633), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1637), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1645), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ anon_sym_BQUOTE,
+ [27116] = 6,
+ ACTIONS(1267), 1,
+ anon_sym_EQ,
+ ACTIONS(1318), 1,
anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1643), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [26939] = 5,
- ACTIONS(1708), 1,
- anon_sym_LPAREN,
- ACTIONS(1711), 1,
- anon_sym_COLON,
+ ACTIONS(1321), 1,
+ anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 12,
+ ACTIONS(1238), 11,
anon_sym_STAR,
- anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -61999,10 +60877,10 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 23,
- sym__automatic_semicolon,
+ ACTIONS(1240), 23,
sym__ternary_qmark,
anon_sym_COMMA,
+ anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
@@ -62023,282 +60901,283 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [26989] = 27,
- ACTIONS(1611), 1,
+ [27168] = 27,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- ACTIONS(1713), 1,
+ ACTIONS(1717), 1,
anon_sym_COMMA,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
- STATE(1220), 1,
+ STATE(1211), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1715), 2,
+ ACTIONS(1719), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [27083] = 26,
- ACTIONS(1611), 1,
+ [27262] = 27,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1665), 1,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- ACTIONS(1667), 1,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1669), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1673), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1675), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1677), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1681), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1683), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1691), 1,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1693), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- ACTIONS(1719), 1,
- anon_sym_in,
- STATE(726), 1,
+ ACTIONS(1717), 1,
+ anon_sym_COMMA,
+ STATE(651), 1,
sym_arguments,
+ STATE(1211), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1661), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1663), 2,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1671), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1679), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1687), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1689), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1685), 3,
+ ACTIONS(1721), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1717), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_of,
- [27175] = 27,
- ACTIONS(1611), 1,
+ [27356] = 27,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- ACTIONS(1713), 1,
+ ACTIONS(1717), 1,
anon_sym_COMMA,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
- STATE(1220), 1,
+ STATE(1211), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1722), 2,
+ ACTIONS(1723), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [27269] = 27,
- ACTIONS(1611), 1,
+ [27450] = 27,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1612), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1628), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1630), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- ACTIONS(1706), 1,
+ ACTIONS(1687), 1,
anon_sym_RBRACE,
- ACTIONS(1724), 1,
+ ACTIONS(1725), 1,
anon_sym_COMMA,
- STATE(726), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1603), 2,
+ ACTIONS(1594), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- ACTIONS(1623), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [27363] = 5,
- ACTIONS(1727), 1,
+ [27544] = 5,
+ ACTIONS(1728), 1,
anon_sym_LPAREN,
- ACTIONS(1730), 1,
+ ACTIONS(1731), 1,
anon_sym_COLON,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1555), 12,
+ ACTIONS(1421), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -62311,7 +61190,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1557), 23,
+ ACTIONS(1423), 23,
sym__automatic_semicolon,
sym__ternary_qmark,
anon_sym_COMMA,
@@ -62335,373 +61214,609 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [27413] = 27,
- ACTIONS(1611), 1,
+ [27594] = 27,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1732), 1,
- anon_sym_COMMA,
- ACTIONS(1735), 1,
- anon_sym_RBRACE,
- STATE(726), 1,
+ ACTIONS(1733), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
- ACTIONS(5), 2,
+ STATE(1283), 1,
+ aux_sym_array_repeat1,
+ ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1603), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(1623), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [27507] = 25,
- ACTIONS(1342), 1,
+ [27687] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1737), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1737), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [27597] = 27,
- ACTIONS(1611), 1,
+ [27780] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1713), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- STATE(726), 1,
+ ACTIONS(1739), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
- STATE(1220), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1739), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(1629), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [27691] = 5,
- ACTIONS(1272), 1,
- anon_sym_EQ,
+ [27873] = 27,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1741), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
+ sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1322), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- ACTIONS(1237), 12,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 21,
- sym__ternary_qmark,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ [27966] = 27,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
+ ACTIONS(1337), 1,
anon_sym_DOT,
+ ACTIONS(1349), 1,
sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1743), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
+ sym_arguments,
+ STATE(1317), 1,
+ aux_sym_array_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1552), 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(1556), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1564), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 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,
- [27741] = 25,
- ACTIONS(1342), 1,
+ [28059] = 27,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1745), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1306), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1741), 4,
+ [28152] = 27,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- anon_sym_RBRACE,
+ ACTIONS(1747), 1,
anon_sym_RPAREN,
- anon_sym_RBRACK,
- [27831] = 6,
- ACTIONS(1272), 1,
- anon_sym_EQ,
- ACTIONS(1325), 1,
- anon_sym_in,
- ACTIONS(1328), 1,
- anon_sym_of,
+ STATE(528), 1,
+ sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1237), 11,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1564), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ [28245] = 25,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1753), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1755), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
+ ACTIONS(1761), 1,
anon_sym_AMP,
+ ACTIONS(1763), 1,
+ anon_sym_CARET,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
+ ACTIONS(1769), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1771), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1779), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1781), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1749), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1759), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 23,
- sym__ternary_qmark,
- anon_sym_COMMA,
+ ACTIONS(1777), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1600), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1773), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ [28334] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- anon_sym_SEMI,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
+ ACTIONS(1590), 1,
anon_sym_DOT,
+ ACTIONS(1604), 1,
sym_optional_chain,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
+ ACTIONS(1616), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1620), 1,
+ anon_sym_AMP,
+ ACTIONS(1622), 1,
anon_sym_CARET,
+ ACTIONS(1624), 1,
+ anon_sym_PIPE,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
+ ACTIONS(1638), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1640), 1,
+ sym__ternary_qmark,
+ STATE(651), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1606), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1608), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1618), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1626), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1634), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1602), 3,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 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,
- [27883] = 6,
- ACTIONS(1545), 1,
+ [28423] = 6,
+ ACTIONS(1375), 1,
+ anon_sym_RBRACK,
+ ACTIONS(1378), 1,
anon_sym_EQ,
- ACTIONS(1697), 1,
- anon_sym_of,
- ACTIONS(1743), 1,
- anon_sym_in,
+ ACTIONS(1644), 1,
+ anon_sym_COMMA,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1538), 11,
+ ACTIONS(1371), 12,
anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -62712,11 +61827,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1540), 23,
+ ACTIONS(1373), 21,
sym__ternary_qmark,
- anon_sym_COMMA,
anon_sym_LPAREN,
- anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -62736,18 +61849,85 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [27935] = 6,
- ACTIONS(1414), 1,
- anon_sym_EQ,
- ACTIONS(1699), 1,
- anon_sym_of,
- ACTIONS(1746), 1,
+ [28474] = 27,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1783), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
+ sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1544), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1564), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ [28567] = 6,
+ ACTIONS(1408), 1,
+ anon_sym_RBRACK,
+ ACTIONS(1411), 1,
+ anon_sym_EQ,
+ ACTIONS(1646), 1,
+ anon_sym_COMMA,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1407), 11,
+ ACTIONS(1404), 12,
anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -62758,11 +61938,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1409), 23,
+ ACTIONS(1406), 21,
sym__ternary_qmark,
- anon_sym_COMMA,
anon_sym_LPAREN,
- anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -62782,18 +61960,19 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [27987] = 6,
- ACTIONS(516), 1,
+ [28618] = 6,
+ ACTIONS(511), 1,
anon_sym_EQ,
- ACTIONS(1701), 1,
- anon_sym_of,
- ACTIONS(1749), 1,
- anon_sym_in,
+ ACTIONS(1441), 1,
+ anon_sym_RBRACK,
+ ACTIONS(1648), 1,
+ anon_sym_COMMA,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(512), 11,
+ ACTIONS(507), 12,
anon_sym_STAR,
+ anon_sym_in,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -62804,11 +61983,9 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(514), 23,
+ ACTIONS(509), 21,
sym__ternary_qmark,
- anon_sym_COMMA,
anon_sym_LPAREN,
- anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -62828,2543 +62005,2495 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [28039] = 27,
- ACTIONS(1342), 1,
+ [28669] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1754), 1,
- anon_sym_SEMI,
- STATE(540), 1,
+ ACTIONS(1785), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28132] = 27,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1342), 1,
+ [28762] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1756), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1320), 1,
- aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1502), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28225] = 27,
- ACTIONS(1342), 1,
+ [28851] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1758), 1,
+ ACTIONS(1787), 1,
anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28318] = 27,
- ACTIONS(1342), 1,
+ [28944] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1760), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ ACTIONS(1789), 1,
+ anon_sym_SEMI,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28411] = 20,
- ACTIONS(1342), 1,
+ [29037] = 27,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1607), 1,
- anon_sym_PIPE,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1791), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
+ STATE(1355), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 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,
- [28490] = 27,
- ACTIONS(1342), 1,
+ [29130] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1784), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ ACTIONS(1793), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28583] = 23,
- ACTIONS(1342), 1,
+ [29223] = 27,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- STATE(540), 1,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1795), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1367), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 5,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [28668] = 25,
- ACTIONS(1342), 1,
+ [29316] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1797), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1609), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28757] = 25,
- ACTIONS(1342), 1,
+ [29409] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1799), 1,
+ anon_sym_RBRACE,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1553), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28846] = 25,
- ACTIONS(1342), 1,
+ [29502] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1801), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1500), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [28935] = 27,
- ACTIONS(1342), 1,
+ [29595] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1798), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ ACTIONS(1803), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29028] = 25,
- ACTIONS(1342), 1,
+ [29688] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1805), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1561), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29117] = 25,
- ACTIONS(1342), 1,
+ [29781] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1807), 1,
+ anon_sym_COLON,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1532), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29206] = 25,
- ACTIONS(1342), 1,
+ [29874] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1809), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1536), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29295] = 27,
- ACTIONS(1342), 1,
+ [29967] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1800), 1,
+ ACTIONS(1811), 1,
anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29388] = 27,
- ACTIONS(1342), 1,
+ [30060] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1802), 1,
+ ACTIONS(1813), 1,
anon_sym_SEMI,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29481] = 25,
- ACTIONS(1342), 1,
+ [30153] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1619), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29570] = 25,
- ACTIONS(1342), 1,
+ ACTIONS(1815), 3,
+ anon_sym_COMMA,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ [30242] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1817), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1595), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29659] = 6,
- ACTIONS(1303), 1,
- anon_sym_RBRACK,
- ACTIONS(1306), 1,
- anon_sym_EQ,
- ACTIONS(1309), 1,
- anon_sym_COMMA,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1237), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1239), 21,
- sym__ternary_qmark,
+ [30335] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
+ ACTIONS(1337), 1,
anon_sym_DOT,
+ ACTIONS(1349), 1,
sym_optional_chain,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1755), 1,
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,
- [29710] = 27,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1804), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1594), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29803] = 25,
- ACTIONS(1342), 1,
+ [30424] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1757), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1761), 1,
+ anon_sym_AMP,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1769), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1771), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1390), 3,
+ ACTIONS(1402), 3,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29892] = 27,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1342), 1,
+ [30513] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1806), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1819), 1,
+ anon_sym_SEMI,
+ STATE(528), 1,
sym_arguments,
- STATE(1325), 1,
- aux_sym_array_repeat1,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [29985] = 27,
- ACTIONS(1342), 1,
+ [30606] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1808), 1,
+ ACTIONS(1821), 1,
anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30078] = 25,
- ACTIONS(1342), 1,
+ [30699] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1757), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1761), 1,
+ anon_sym_AMP,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1769), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1771), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1601), 3,
+ ACTIONS(1568), 3,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30167] = 21,
- ACTIONS(1342), 1,
+ [30788] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1607), 1,
- anon_sym_PIPE,
- ACTIONS(1766), 1,
+ ACTIONS(1753), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1755), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1763), 1,
+ anon_sym_CARET,
+ ACTIONS(1765), 1,
+ anon_sym_PIPE,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1790), 1,
- anon_sym_CARET,
- STATE(540), 1,
+ ACTIONS(1779), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1781), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1498), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 7,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [30248] = 27,
- ACTIONS(1342), 1,
+ [30877] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1810), 1,
- anon_sym_SEMI,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1446), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30341] = 27,
- ACTIONS(1342), 1,
+ [30966] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1812), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ ACTIONS(1823), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30434] = 27,
- ACTIONS(1342), 1,
+ [31059] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1814), 1,
+ ACTIONS(1825), 1,
anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30527] = 27,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1342), 1,
+ [31152] = 15,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- ACTIONS(1816), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1301), 1,
- aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1554), 7,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 13,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_CARET,
anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [30620] = 27,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1342), 1,
+ anon_sym_BQUOTE,
+ [31221] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1818), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1827), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
- STATE(1325), 1,
- aux_sym_array_repeat1,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30713] = 27,
- ACTIONS(1342), 1,
+ [31314] = 10,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1771), 1,
+ anon_sym_STAR_STAR,
+ STATE(528), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1554), 12,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 16,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_PERCENT,
+ anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
+ anon_sym_instanceof,
+ anon_sym_BQUOTE,
+ [31373] = 21,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1820), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30806] = 27,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 7,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [31454] = 22,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1822), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [30899] = 27,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 6,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [31537] = 13,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1824), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1554), 8,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 15,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
anon_sym_LT_EQ,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [30992] = 27,
- ACTIONS(1342), 1,
+ anon_sym_BQUOTE,
+ [31602] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1826), 1,
- anon_sym_SEMI,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1596), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [31085] = 27,
- ACTIONS(1342), 1,
+ [31691] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1828), 1,
- anon_sym_SEMI,
- STATE(540), 1,
+ ACTIONS(1829), 1,
+ anon_sym_RBRACE,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [31178] = 25,
- ACTIONS(1342), 1,
+ [31784] = 19,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
- anon_sym_CARET,
- ACTIONS(1792), 1,
- anon_sym_PIPE,
- ACTIONS(1794), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1554), 2,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1603), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [31267] = 25,
- ACTIONS(1611), 1,
+ ACTIONS(1546), 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,
+ [31861] = 20,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1717), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [31356] = 27,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 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,
+ [31940] = 21,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1830), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [31449] = 27,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 7,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [32021] = 12,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1832), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1554), 10,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1546), 15,
+ sym__ternary_qmark,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ anon_sym_CARET,
+ anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [31542] = 12,
- ACTIONS(1342), 1,
+ anon_sym_BQUOTE,
+ [32084] = 10,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1554), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1607), 10,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
@@ -65373,9 +64502,10 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 15,
+ ACTIONS(1546), 16,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COLON,
@@ -65384,6 +64514,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
+ anon_sym_PERCENT,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
@@ -65391,850 +64522,853 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
anon_sym_BQUOTE,
- [31605] = 27,
- ACTIONS(1342), 1,
+ [32143] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- ACTIONS(1834), 1,
- anon_sym_RBRACE,
- STATE(540), 1,
+ ACTIONS(1831), 1,
+ anon_sym_SEMI,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
+ STATE(1086), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [31698] = 27,
- ACTIONS(1342), 1,
+ [32236] = 17,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1836), 1,
- anon_sym_RBRACE,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [31791] = 27,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1342), 1,
+ ACTIONS(1554), 4,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 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,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [32309] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1838), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1833), 1,
+ anon_sym_SEMI,
+ STATE(528), 1,
sym_arguments,
- STATE(1297), 1,
- aux_sym_array_repeat1,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [31884] = 15,
- ACTIONS(1342), 1,
+ [32402] = 23,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1753), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1755), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1774), 1,
+ ACTIONS(1761), 1,
+ anon_sym_AMP,
+ ACTIONS(1763), 1,
+ anon_sym_CARET,
+ ACTIONS(1765), 1,
+ anon_sym_PIPE,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1607), 7,
+ ACTIONS(1775), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1777), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 13,
+ ACTIONS(1773), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1546), 5,
sym__ternary_qmark,
anon_sym_LBRACE,
anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
anon_sym_BQUOTE,
- [31953] = 10,
- ACTIONS(1342), 1,
+ [32487] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1776), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1835), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
+ ACTIONS(1544), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1552), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 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,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1562), 3,
+ anon_sym_LT_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_BQUOTE,
- [32012] = 10,
- ACTIONS(1342), 1,
+ [32580] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1776), 1,
+ ACTIONS(1753), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1755), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1757), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1761), 1,
+ anon_sym_AMP,
+ ACTIONS(1763), 1,
+ anon_sym_CARET,
+ ACTIONS(1765), 1,
+ anon_sym_PIPE,
+ ACTIONS(1769), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1779), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1781), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
+ ACTIONS(1749), 2,
anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ anon_sym_SLASH,
+ ACTIONS(1759), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- anon_sym_SLASH,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 16,
- sym__ternary_qmark,
+ ACTIONS(1777), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1584), 3,
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_BQUOTE,
+ ACTIONS(1751), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_BQUOTE,
- [32071] = 17,
- ACTIONS(1342), 1,
+ [32669] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1837), 1,
+ anon_sym_RBRACE,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1764), 3,
+ ACTIONS(1564), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1566), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1607), 4,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 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,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [32144] = 27,
- ACTIONS(1342), 1,
+ [32762] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1840), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1466), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [32237] = 21,
- ACTIONS(1342), 1,
+ [32851] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1790), 1,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- STATE(540), 1,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1839), 1,
+ anon_sym_RPAREN,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 7,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [32318] = 19,
- ACTIONS(1342), 1,
+ [32944] = 27,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1570), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
+ anon_sym_PIPE,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1841), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
+ STATE(1283), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1607), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 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,
- [32395] = 27,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1342), 1,
+ [33037] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1842), 1,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1843), 1,
anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1355), 1,
- aux_sym_array_repeat1,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [32488] = 27,
- ACTIONS(1342), 1,
+ [33130] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1844), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [32581] = 6,
- ACTIONS(1542), 1,
- anon_sym_RBRACK,
- ACTIONS(1545), 1,
- anon_sym_EQ,
- ACTIONS(1697), 1,
- anon_sym_COMMA,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1538), 12,
- anon_sym_STAR,
+ ACTIONS(1490), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1540), 21,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [32632] = 27,
- ACTIONS(1342), 1,
+ [33219] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1846), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(651), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [32725] = 6,
- ACTIONS(1411), 1,
+ ACTIONS(1689), 3,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ [33308] = 6,
+ ACTIONS(1292), 1,
anon_sym_RBRACK,
- ACTIONS(1414), 1,
+ ACTIONS(1295), 1,
anon_sym_EQ,
- ACTIONS(1699), 1,
+ ACTIONS(1302), 1,
anon_sym_COMMA,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1407), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -66247,7 +65381,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1409), 21,
+ ACTIONS(1240), 21,
sym__ternary_qmark,
anon_sym_LPAREN,
anon_sym_LBRACK,
@@ -66269,142 +65403,206 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [32776] = 22,
- ACTIONS(1342), 1,
+ [33359] = 27,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1790), 1,
+ ACTIONS(1572), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- STATE(540), 1,
+ ACTIONS(1580), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1582), 1,
+ sym__ternary_qmark,
+ ACTIONS(1735), 1,
+ anon_sym_COMMA,
+ ACTIONS(1845), 1,
+ anon_sym_SEMI,
+ STATE(528), 1,
sym_arguments,
+ STATE(1086), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 6,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [32859] = 25,
- ACTIONS(1342), 1,
+ [33452] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1598), 3,
+ anon_sym_LBRACE,
+ anon_sym_COLON,
+ anon_sym_BQUOTE,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1848), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [32948] = 6,
- ACTIONS(516), 1,
- anon_sym_EQ,
- ACTIONS(1396), 1,
- anon_sym_RBRACK,
- ACTIONS(1701), 1,
- anon_sym_COMMA,
+ [33541] = 25,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1851), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1853), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1855), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1859), 1,
+ anon_sym_AMP,
+ ACTIONS(1861), 1,
+ anon_sym_CARET,
+ ACTIONS(1863), 1,
+ anon_sym_PIPE,
+ ACTIONS(1867), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1869), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1877), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1879), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1584), 2,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ ACTIONS(1847), 2,
+ anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1857), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1865), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1873), 2,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1875), 2,
+ anon_sym_EQ_EQ_EQ,
+ anon_sym_BANG_EQ_EQ,
+ ACTIONS(1849), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1871), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ [33629] = 4,
+ ACTIONS(1327), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(512), 12,
+ ACTIONS(1238), 12,
anon_sym_STAR,
anon_sym_in,
anon_sym_LT,
@@ -66417,9 +65615,10 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(514), 21,
+ ACTIONS(1240), 22,
sym__ternary_qmark,
anon_sym_LPAREN,
+ anon_sym_of,
anon_sym_LBRACK,
anon_sym_DOT,
sym_optional_chain,
@@ -66439,1582 +65638,1612 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [32999] = 27,
- ACTIONS(1342), 1,
+ [33675] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1850), 1,
- anon_sym_RBRACE,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1881), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33092] = 27,
- ACTIONS(1342), 1,
+ [33763] = 4,
+ ACTIONS(1369), 1,
+ sym_regex_flags,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1365), 14,
+ anon_sym_STAR,
+ anon_sym_in,
+ anon_sym_of,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ anon_sym_instanceof,
+ ACTIONS(1367), 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,
+ [33809] = 24,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(99), 1,
+ anon_sym_STAR,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(111), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1887), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1891), 1,
+ anon_sym_async,
+ ACTIONS(1895), 1,
+ anon_sym_static,
+ STATE(915), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1312), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1334), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1893), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(1897), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(1883), 3,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ STATE(1281), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1290), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ STATE(1333), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [33895] = 24,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(99), 1,
+ anon_sym_STAR,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(111), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1901), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1903), 1,
+ anon_sym_async,
+ ACTIONS(1905), 1,
+ anon_sym_static,
+ STATE(915), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1309), 1,
+ aux_sym_object_repeat1,
+ STATE(1312), 1,
+ aux_sym_object_pattern_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1893), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(1907), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(1899), 3,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ STATE(1281), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1289), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ STATE(1290), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [33981] = 25,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1852), 1,
- anon_sym_COLON,
- STATE(540), 1,
+ STATE(651), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1909), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ ACTIONS(1610), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1632), 3,
+ anon_sym_LT_EQ,
+ anon_sym_GT_EQ,
+ anon_sym_instanceof,
+ [34069] = 24,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(99), 1,
+ anon_sym_STAR,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(111), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1913), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1915), 1,
+ anon_sym_async,
+ ACTIONS(1917), 1,
+ anon_sym_static,
+ STATE(915), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1312), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1334), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1893), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(1919), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(1911), 3,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ STATE(1281), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1290), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ STATE(1333), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [34155] = 24,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(99), 1,
+ anon_sym_STAR,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(111), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1923), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1925), 1,
+ anon_sym_async,
+ ACTIONS(1927), 1,
+ anon_sym_static,
+ STATE(915), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1312), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1334), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1893), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(1929), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(1921), 3,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ STATE(1281), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1290), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ STATE(1333), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [34241] = 24,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(99), 1,
+ anon_sym_STAR,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(111), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1933), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1935), 1,
+ anon_sym_async,
+ ACTIONS(1937), 1,
+ anon_sym_static,
+ STATE(915), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1312), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1334), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1893), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(1939), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(1931), 3,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ STATE(1281), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1290), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ STATE(1333), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [34327] = 24,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(99), 1,
+ anon_sym_STAR,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(111), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1943), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1945), 1,
+ anon_sym_async,
+ ACTIONS(1947), 1,
+ anon_sym_static,
+ STATE(915), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1312), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1334), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1893), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(1949), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(1941), 3,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ STATE(1281), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1290), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ STATE(1333), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [34413] = 6,
+ ACTIONS(1242), 1,
+ anon_sym_EQ,
+ ACTIONS(1318), 1,
anon_sym_in,
+ ACTIONS(1321), 1,
+ anon_sym_of,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1238), 11,
+ anon_sym_STAR,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ anon_sym_SLASH,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1240), 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,
- [33185] = 27,
- ACTIONS(1342), 1,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ anon_sym_BQUOTE,
+ [34463] = 26,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1612), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1614), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1616), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1620), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1622), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1624), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1628), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1630), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1638), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1640), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1854), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ ACTIONS(1951), 1,
+ anon_sym_SEMI,
+ ACTIONS(1953), 1,
+ sym__automatic_semicolon,
+ STATE(651), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1606), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1608), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1618), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1626), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1634), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1636), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1610), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1632), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33278] = 27,
- ACTIONS(1342), 1,
+ [34553] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1550), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1558), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1560), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1574), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
- anon_sym_PERCENT,
- ACTIONS(1583), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1856), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1687), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33371] = 25,
- ACTIONS(1611), 1,
+ [34641] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
- anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
+ anon_sym_CARET,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- STATE(726), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1625), 3,
- sym__automatic_semicolon,
+ ACTIONS(1699), 2,
anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(1629), 3,
+ anon_sym_RBRACE,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33460] = 27,
- ACTIONS(1342), 1,
+ [34729] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1858), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1594), 2,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33553] = 13,
- ACTIONS(1342), 1,
+ [34817] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1774), 1,
+ ACTIONS(1851), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1853), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1855), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1859), 1,
+ anon_sym_AMP,
+ ACTIONS(1861), 1,
+ anon_sym_CARET,
+ ACTIONS(1863), 1,
+ anon_sym_PIPE,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1877), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1879), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1402), 2,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1772), 2,
+ ACTIONS(1857), 2,
+ anon_sym_GT_GT_GT,
+ anon_sym_LT_LT,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1607), 8,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 15,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
+ ACTIONS(1849), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1871), 3,
+ anon_sym_LT_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_BQUOTE,
- [33618] = 27,
- ACTIONS(1342), 1,
+ [34905] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1860), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1568), 2,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33711] = 27,
- ACTIONS(1342), 1,
+ [34993] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1862), 1,
- anon_sym_RPAREN,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1598), 2,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33804] = 27,
- ACTIONS(1342), 1,
+ [35081] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- ACTIONS(1752), 1,
- anon_sym_COMMA,
- ACTIONS(1864), 1,
- anon_sym_SEMI,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
- STATE(1100), 1,
- aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1446), 2,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [33897] = 25,
- ACTIONS(1342), 1,
+ [35169] = 15,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
- anon_sym_CARET,
- ACTIONS(1792), 1,
- anon_sym_PIPE,
- ACTIONS(1794), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1492), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_BQUOTE,
- ACTIONS(1764), 3,
+ ACTIONS(1554), 7,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ anon_sym_EQ_EQ,
+ anon_sym_BANG_EQ,
+ ACTIONS(1546), 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,
- [33986] = 25,
- ACTIONS(1342), 1,
+ anon_sym_BQUOTE,
+ [35237] = 10,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
- anon_sym_GT_GT,
- ACTIONS(1878), 1,
- anon_sym_AMP,
- ACTIONS(1880), 1,
- anon_sym_CARET,
- ACTIONS(1882), 1,
- anon_sym_PIPE,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1609), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1554), 12,
anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1876), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1546), 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,
- ACTIONS(1868), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1890), 3,
- anon_sym_LT_EQ,
anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [34074] = 24,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
- anon_sym_STAR,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(113), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1904), 1,
- anon_sym_RBRACE,
- ACTIONS(1906), 1,
- anon_sym_LBRACK,
- ACTIONS(1908), 1,
- anon_sym_async,
- ACTIONS(1912), 1,
- anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- STATE(1360), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1369), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1910), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1914), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(1900), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1309), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1328), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1368), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [34160] = 25,
- ACTIONS(1611), 1,
+ anon_sym_BQUOTE,
+ [35295] = 21,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
- anon_sym_PERCENT,
- ACTIONS(1641), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- STATE(726), 1,
+ ACTIONS(1867), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1869), 1,
+ anon_sym_STAR_STAR,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1916), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(1629), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [34248] = 25,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 6,
+ sym__ternary_qmark,
+ anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [35375] = 22,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1918), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(1563), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [34336] = 4,
- ACTIONS(1484), 1,
- sym_regex_flags,
+ ACTIONS(1546), 5,
+ sym__ternary_qmark,
+ anon_sym_of,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [35457] = 13,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1867), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1869), 1,
+ anon_sym_STAR_STAR,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1480), 14,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1847), 2,
anon_sym_STAR,
+ anon_sym_SLASH,
+ ACTIONS(1865), 2,
+ anon_sym_PLUS,
+ anon_sym_DASH,
+ ACTIONS(1554), 8,
anon_sym_in,
- anon_sym_of,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
anon_sym_AMP,
anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- anon_sym_instanceof,
- ACTIONS(1482), 20,
+ ACTIONS(1546), 14,
sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ anon_sym_of,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
+ anon_sym_instanceof,
anon_sym_BQUOTE,
- [34382] = 24,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
- anon_sym_STAR,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(113), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1906), 1,
- anon_sym_LBRACK,
- ACTIONS(1922), 1,
- anon_sym_RBRACE,
- ACTIONS(1924), 1,
- anon_sym_async,
- ACTIONS(1926), 1,
- anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- STATE(1354), 1,
- aux_sym_object_repeat1,
- STATE(1360), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1910), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1928), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(1920), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1309), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1314), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(1328), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [34468] = 25,
- ACTIONS(1342), 1,
+ [35521] = 19,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
- anon_sym_AMP,
- ACTIONS(1880), 1,
- anon_sym_CARET,
- ACTIONS(1882), 1,
- anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1561), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1554), 2,
+ anon_sym_AMP,
+ anon_sym_PIPE,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [34556] = 26,
- ACTIONS(1611), 1,
+ ACTIONS(1546), 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,
+ [35597] = 20,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1613), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1615), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1621), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1631), 1,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1635), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1639), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1641), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1649), 1,
- anon_sym_CARET,
- ACTIONS(1651), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1653), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1655), 1,
- anon_sym_PIPE,
- ACTIONS(1657), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1659), 1,
- sym__ternary_qmark,
- ACTIONS(1930), 1,
- anon_sym_SEMI,
- ACTIONS(1932), 1,
- sym__automatic_semicolon,
- STATE(726), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1623), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1627), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1633), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1637), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1645), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1647), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1629), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1643), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [34646] = 25,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 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,
+ [35675] = 21,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1554), 1,
+ anon_sym_PIPE,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1706), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(1563), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [34734] = 24,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
- anon_sym_STAR,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(113), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1906), 1,
- anon_sym_LBRACK,
- ACTIONS(1936), 1,
- anon_sym_RBRACE,
- ACTIONS(1938), 1,
- anon_sym_async,
- ACTIONS(1940), 1,
- anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- STATE(1360), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1369), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1910), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1942), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(1934), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1309), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1328), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1368), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [34820] = 25,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 6,
+ sym__ternary_qmark,
+ anon_sym_of,
+ anon_sym_AMP_AMP,
+ anon_sym_PIPE_PIPE,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [35755] = 12,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
- anon_sym_GT_GT,
- ACTIONS(1573), 1,
- anon_sym_AMP,
- ACTIONS(1575), 1,
- anon_sym_CARET,
- ACTIONS(1577), 1,
- anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1554), 10,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ anon_sym_GT_GT,
+ anon_sym_AMP,
+ anon_sym_PIPE,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1546), 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,
- ACTIONS(1735), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
- anon_sym_LT_EQ,
anon_sym_GT_EQ,
+ anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- [34908] = 24,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
- anon_sym_STAR,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(113), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1906), 1,
- anon_sym_LBRACK,
- ACTIONS(1946), 1,
- anon_sym_RBRACE,
- ACTIONS(1948), 1,
- anon_sym_async,
- ACTIONS(1950), 1,
- anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- STATE(1360), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1369), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1910), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1952), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(1944), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1309), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1328), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1368), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [34994] = 24,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
- anon_sym_STAR,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(113), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1906), 1,
+ anon_sym_BQUOTE,
+ [35817] = 10,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1956), 1,
- anon_sym_RBRACE,
- ACTIONS(1958), 1,
- anon_sym_async,
- ACTIONS(1960), 1,
- anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- STATE(1360), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1369), 1,
- aux_sym_object_repeat1,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(1349), 1,
+ sym_optional_chain,
+ ACTIONS(1869), 1,
+ anon_sym_STAR_STAR,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1910), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1962), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(1954), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1309), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1328), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1368), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [35080] = 24,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
+ ACTIONS(1359), 2,
+ anon_sym_PLUS_PLUS,
+ anon_sym_DASH_DASH,
+ ACTIONS(1554), 12,
anon_sym_STAR,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(113), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1906), 1,
- anon_sym_LBRACK,
- ACTIONS(1966), 1,
- anon_sym_RBRACE,
- ACTIONS(1968), 1,
- anon_sym_async,
- ACTIONS(1970), 1,
- anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- STATE(1360), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1369), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1910), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1972), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(1964), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1309), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1328), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1368), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [35166] = 6,
- ACTIONS(1241), 1,
- anon_sym_EQ,
- ACTIONS(1325), 1,
anon_sym_in,
- ACTIONS(1328), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1237), 11,
- anon_sym_STAR,
anon_sym_LT,
anon_sym_GT,
anon_sym_GT_GT,
@@ -68025,2714 +67254,1728 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 21,
+ ACTIONS(1546), 15,
sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- sym_optional_chain,
+ anon_sym_of,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
anon_sym_CARET,
anon_sym_PERCENT,
- anon_sym_STAR_STAR,
anon_sym_LT_EQ,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
anon_sym_BQUOTE,
- [35216] = 25,
- ACTIONS(1342), 1,
+ [35875] = 17,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
- anon_sym_AMP,
- ACTIONS(1880), 1,
- anon_sym_CARET,
- ACTIONS(1882), 1,
- anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1595), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [35304] = 4,
- ACTIONS(1334), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1237), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
+ ACTIONS(1554), 4,
anon_sym_AMP,
anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1239), 22,
+ ACTIONS(1546), 9,
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,
- [35350] = 25,
- ACTIONS(1342), 1,
+ [35947] = 23,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
- sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1601), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [35438] = 25,
- ACTIONS(1342), 1,
+ ACTIONS(1546), 4,
+ sym__ternary_qmark,
+ anon_sym_of,
+ anon_sym_QMARK_QMARK,
+ anon_sym_BQUOTE,
+ [36031] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1603), 2,
+ ACTIONS(1466), 2,
anon_sym_of,
anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [35526] = 25,
- ACTIONS(1342), 1,
+ [36119] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1492), 2,
+ ACTIONS(1490), 2,
anon_sym_of,
anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [35614] = 15,
- ACTIONS(1342), 1,
+ [36207] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1874), 1,
+ ACTIONS(1851), 1,
+ anon_sym_AMP_AMP,
+ ACTIONS(1853), 1,
+ anon_sym_PIPE_PIPE,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1886), 1,
+ ACTIONS(1859), 1,
+ anon_sym_AMP,
+ ACTIONS(1861), 1,
+ anon_sym_CARET,
+ ACTIONS(1863), 1,
+ anon_sym_PIPE,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
+ ACTIONS(1877), 1,
+ anon_sym_QMARK_QMARK,
+ ACTIONS(1879), 1,
+ sym__ternary_qmark,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
+ ACTIONS(1498), 2,
+ anon_sym_of,
+ anon_sym_BQUOTE,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1607), 7,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1605), 12,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_BQUOTE,
- [35682] = 10,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 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,
- [35740] = 21,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1874), 1,
- anon_sym_GT_GT,
- ACTIONS(1878), 1,
- anon_sym_AMP,
- ACTIONS(1880), 1,
- anon_sym_CARET,
- ACTIONS(1882), 1,
- anon_sym_PIPE,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1876), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1884), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1892), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1890), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 6,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [35820] = 22,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1870), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1874), 1,
- anon_sym_GT_GT,
- ACTIONS(1878), 1,
- anon_sym_AMP,
- ACTIONS(1880), 1,
- anon_sym_CARET,
- ACTIONS(1882), 1,
- anon_sym_PIPE,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1876), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1884), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1892), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1890), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 5,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [35902] = 13,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1884), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1607), 8,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 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,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
anon_sym_instanceof,
- anon_sym_BQUOTE,
- [35966] = 19,
- ACTIONS(1342), 1,
+ [36295] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1874), 1,
- anon_sym_GT_GT,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1607), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1876), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1884), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1892), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1890), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 7,
- sym__ternary_qmark,
- anon_sym_of,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [36042] = 20,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1607), 1,
- anon_sym_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1876), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1884), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1892), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1890), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 7,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [36120] = 21,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1607), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1874), 1,
- anon_sym_GT_GT,
- ACTIONS(1878), 1,
- anon_sym_AMP,
- ACTIONS(1880), 1,
- anon_sym_CARET,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1876), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1884), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1892), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1890), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1605), 6,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [36200] = 12,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1607), 10,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 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,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_BQUOTE,
- [36262] = 10,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1607), 12,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 15,
+ ACTIONS(1879), 1,
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,
- [36320] = 17,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1874), 1,
- anon_sym_GT_GT,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1876), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1884), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1868), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1890), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(1607), 4,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1605), 9,
- sym__ternary_qmark,
+ ACTIONS(1502), 2,
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,
- [36392] = 23,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1870), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
- anon_sym_GT_GT,
- ACTIONS(1878), 1,
- anon_sym_AMP,
- ACTIONS(1880), 1,
- anon_sym_CARET,
- ACTIONS(1882), 1,
- anon_sym_PIPE,
- ACTIONS(1886), 1,
- anon_sym_PERCENT,
- ACTIONS(1888), 1,
- anon_sym_STAR_STAR,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- ACTIONS(1605), 4,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_QMARK_QMARK,
- anon_sym_BQUOTE,
- [36476] = 25,
- ACTIONS(1342), 1,
+ [36383] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1553), 2,
+ ACTIONS(1600), 2,
anon_sym_of,
anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [36564] = 25,
- ACTIONS(1342), 1,
+ [36471] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1500), 2,
+ ACTIONS(1596), 2,
anon_sym_of,
anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1849), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [36652] = 25,
- ACTIONS(1342), 1,
+ [36559] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1955), 1,
+ anon_sym_COLON,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1532), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [36740] = 25,
- ACTIONS(1342), 1,
+ [36646] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1957), 1,
+ anon_sym_LBRACE,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1536), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [36828] = 25,
- ACTIONS(1342), 1,
+ [36733] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1959), 1,
+ anon_sym_COLON,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1619), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [36916] = 25,
- ACTIONS(1342), 1,
+ [36820] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1870), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- STATE(540), 1,
+ ACTIONS(1961), 1,
+ anon_sym_COLON,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1390), 2,
- anon_sym_of,
- anon_sym_BQUOTE,
- ACTIONS(1866), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1876), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1868), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1890), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37004] = 25,
- ACTIONS(1342), 1,
+ [36907] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1974), 1,
- anon_sym_COLON,
- STATE(540), 1,
+ ACTIONS(1963), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37091] = 25,
- ACTIONS(1342), 1,
+ [36994] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1757), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1761), 1,
+ anon_sym_AMP,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1769), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1771), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1976), 1,
+ ACTIONS(1965), 1,
anon_sym_COLON,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37178] = 25,
- ACTIONS(1342), 1,
+ [37081] = 26,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1689), 1,
+ anon_sym_of,
+ ACTIONS(1851), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1853), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1855), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1859), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1861), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1863), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1867), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1869), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1877), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1879), 1,
sym__ternary_qmark,
- ACTIONS(1978), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ ACTIONS(1967), 1,
+ anon_sym_in,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1847), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1849), 2,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1857), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1865), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1873), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1875), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1871), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37265] = 26,
- ACTIONS(1342), 1,
+ [37170] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1717), 1,
- anon_sym_of,
- ACTIONS(1870), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1872), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1874), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1878), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1880), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1882), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1886), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1888), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1896), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1898), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1980), 1,
- anon_sym_in,
- STATE(540), 1,
+ ACTIONS(1970), 1,
+ anon_sym_COLON,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1866), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1868), 2,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1876), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1884), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1892), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1894), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1890), 3,
+ ACTIONS(1751), 3,
+ anon_sym_in,
+ anon_sym_LT,
+ anon_sym_GT,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37354] = 25,
- ACTIONS(1342), 1,
+ [37257] = 25,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
+ ACTIONS(1550), 1,
anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
+ ACTIONS(1558), 1,
anon_sym_PERCENT,
- ACTIONS(1776), 1,
+ ACTIONS(1560), 1,
anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1570), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1572), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1574), 1,
+ anon_sym_AMP,
+ ACTIONS(1576), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1578), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1580), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1582), 1,
sym__ternary_qmark,
- ACTIONS(1983), 1,
- anon_sym_LBRACE,
- STATE(540), 1,
+ ACTIONS(1972), 1,
+ anon_sym_RBRACK,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1544), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1552), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1556), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1564), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1566), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1548), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1562), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37441] = 25,
- ACTIONS(1342), 1,
+ [37344] = 21,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(99), 1,
+ anon_sym_STAR,
+ ACTIONS(111), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(1979), 1,
+ anon_sym_async,
+ ACTIONS(1981), 1,
+ anon_sym_static,
+ STATE(915), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1893), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(1976), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ ACTIONS(1983), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(1974), 3,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ STATE(1290), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ STATE(1421), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1430), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [37422] = 24,
+ ACTIONS(1333), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1335), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1337), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1349), 1,
sym_optional_chain,
- ACTIONS(1565), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1567), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1569), 1,
+ ACTIONS(1757), 1,
anon_sym_GT_GT,
- ACTIONS(1573), 1,
+ ACTIONS(1761), 1,
anon_sym_AMP,
- ACTIONS(1575), 1,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1577), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1581), 1,
+ ACTIONS(1769), 1,
anon_sym_PERCENT,
- ACTIONS(1583), 1,
+ ACTIONS(1771), 1,
anon_sym_STAR_STAR,
- ACTIONS(1591), 1,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1593), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1985), 1,
- anon_sym_RBRACK,
- STATE(540), 1,
+ STATE(528), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1559), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1571), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1579), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1587), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1589), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1563), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1585), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37528] = 25,
- ACTIONS(1342), 1,
+ [37506] = 24,
+ ACTIONS(1586), 1,
anon_sym_LPAREN,
- ACTIONS(1344), 1,
+ ACTIONS(1588), 1,
anon_sym_LBRACK,
- ACTIONS(1346), 1,
+ ACTIONS(1590), 1,
anon_sym_DOT,
- ACTIONS(1354), 1,
+ ACTIONS(1604), 1,
sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
+ ACTIONS(1753), 1,
anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
+ ACTIONS(1755), 1,
anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
+ ACTIONS(1757), 1,
+ anon_sym_GT_GT,
+ ACTIONS(1761), 1,
+ anon_sym_AMP,
+ ACTIONS(1763), 1,
anon_sym_CARET,
- ACTIONS(1792), 1,
+ ACTIONS(1765), 1,
anon_sym_PIPE,
- ACTIONS(1794), 1,
+ ACTIONS(1769), 1,
+ anon_sym_PERCENT,
+ ACTIONS(1771), 1,
+ anon_sym_STAR_STAR,
+ ACTIONS(1779), 1,
anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
+ ACTIONS(1781), 1,
sym__ternary_qmark,
- ACTIONS(1987), 1,
- anon_sym_COLON,
- STATE(540), 1,
+ STATE(651), 1,
sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1362), 2,
+ ACTIONS(1359), 2,
anon_sym_PLUS_PLUS,
anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
+ ACTIONS(1749), 2,
anon_sym_STAR,
anon_sym_SLASH,
- ACTIONS(1768), 2,
+ ACTIONS(1759), 2,
anon_sym_GT_GT_GT,
anon_sym_LT_LT,
- ACTIONS(1772), 2,
+ ACTIONS(1767), 2,
anon_sym_PLUS,
anon_sym_DASH,
- ACTIONS(1780), 2,
+ ACTIONS(1775), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
+ ACTIONS(1777), 2,
anon_sym_EQ_EQ_EQ,
anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
+ ACTIONS(1751), 3,
anon_sym_in,
anon_sym_LT,
anon_sym_GT,
- ACTIONS(1778), 3,
+ ACTIONS(1773), 3,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_instanceof,
- [37615] = 25,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
- anon_sym_CARET,
- ACTIONS(1792), 1,
- anon_sym_PIPE,
- ACTIONS(1794), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
- sym__ternary_qmark,
- ACTIONS(1989), 1,
- anon_sym_COLON,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1768), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1772), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1780), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1778), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [37702] = 25,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
- anon_sym_CARET,
- ACTIONS(1792), 1,
- anon_sym_PIPE,
- ACTIONS(1794), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
- sym__ternary_qmark,
- ACTIONS(1991), 1,
- anon_sym_COLON,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1768), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1772), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1780), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1778), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [37789] = 21,
- ACTIONS(93), 1,
+ [37590] = 20,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(101), 1,
+ ACTIONS(99), 1,
anon_sym_STAR,
- ACTIONS(113), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(121), 1,
+ ACTIONS(119), 1,
aux_sym_method_definition_token1,
- ACTIONS(861), 1,
+ ACTIONS(702), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1906), 1,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(1989), 1,
+ anon_sym_RBRACE,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(1998), 1,
+ ACTIONS(1993), 1,
anon_sym_async,
- ACTIONS(2000), 1,
+ ACTIONS(1997), 1,
anon_sym_static,
- STATE(928), 1,
+ STATE(915), 1,
aux_sym_export_statement_repeat1,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
+ STATE(1292), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1910), 2,
+ ACTIONS(1995), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(1995), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(2002), 2,
+ ACTIONS(1999), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(1993), 3,
+ ACTIONS(1985), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1328), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1474), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1481), 3,
+ STATE(1291), 3,
sym_spread_element,
sym_method_definition,
sym_pair,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [37867] = 24,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1344), 1,
- anon_sym_LBRACK,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(1354), 1,
- sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
- anon_sym_CARET,
- ACTIONS(1792), 1,
- anon_sym_PIPE,
- ACTIONS(1794), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
- sym__ternary_qmark,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1768), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1772), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1780), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1778), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [37951] = 24,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1613), 1,
- anon_sym_LBRACK,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(1621), 1,
- sym_optional_chain,
- ACTIONS(1766), 1,
- anon_sym_GT_GT,
- ACTIONS(1770), 1,
- anon_sym_AMP,
- ACTIONS(1774), 1,
- anon_sym_PERCENT,
- ACTIONS(1776), 1,
- anon_sym_STAR_STAR,
- ACTIONS(1786), 1,
- anon_sym_AMP_AMP,
- ACTIONS(1788), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(1790), 1,
- anon_sym_CARET,
- ACTIONS(1792), 1,
- anon_sym_PIPE,
- ACTIONS(1794), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(1796), 1,
- sym__ternary_qmark,
- STATE(726), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1362), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(1762), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(1768), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(1772), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(1780), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1782), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(1764), 3,
- anon_sym_in,
- anon_sym_LT,
- anon_sym_GT,
- ACTIONS(1778), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [38035] = 23,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(2006), 1,
- anon_sym_STAR,
- ACTIONS(2008), 1,
- anon_sym_RBRACE,
- ACTIONS(2010), 1,
- anon_sym_SEMI,
- ACTIONS(2012), 1,
- anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
- anon_sym_DQUOTE,
- ACTIONS(2018), 1,
- anon_sym_SQUOTE,
- ACTIONS(2020), 1,
- anon_sym_async,
- ACTIONS(2024), 1,
- anon_sym_static,
- ACTIONS(2026), 1,
- aux_sym_method_definition_token1,
- STATE(882), 1,
- aux_sym_class_body_repeat1,
- STATE(926), 1,
- aux_sym_export_statement_repeat1,
- STATE(970), 1,
- sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
- sym_class_static_block,
- STATE(991), 1,
- sym_decorator,
- STATE(1491), 1,
- sym_field_definition,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2022), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2028), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2004), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1136), 3,
+ STATE(1301), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38112] = 23,
- ACTIONS(93), 1,
+ [37660] = 21,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2006), 1,
- anon_sym_STAR,
- ACTIONS(2012), 1,
- anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
- anon_sym_DQUOTE,
- ACTIONS(2018), 1,
- anon_sym_SQUOTE,
- ACTIONS(2020), 1,
- anon_sym_async,
- ACTIONS(2024), 1,
- anon_sym_static,
- ACTIONS(2026), 1,
- aux_sym_method_definition_token1,
- ACTIONS(2030), 1,
- anon_sym_RBRACE,
- ACTIONS(2032), 1,
- anon_sym_SEMI,
- STATE(883), 1,
- aux_sym_class_body_repeat1,
- STATE(926), 1,
- aux_sym_export_statement_repeat1,
- STATE(970), 1,
- sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
- sym_class_static_block,
- STATE(991), 1,
- sym_decorator,
- STATE(1491), 1,
- sym_field_definition,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2022), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2028), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2004), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1136), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- [38189] = 23,
- ACTIONS(2037), 1,
+ ACTIONS(2003), 1,
anon_sym_STAR,
- ACTIONS(2040), 1,
+ ACTIONS(2005), 1,
anon_sym_RBRACE,
- ACTIONS(2042), 1,
+ ACTIONS(2007), 1,
anon_sym_SEMI,
- ACTIONS(2045), 1,
+ ACTIONS(2009), 1,
anon_sym_LBRACK,
- ACTIONS(2048), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2051), 1,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(2054), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2057), 1,
+ ACTIONS(2015), 1,
anon_sym_async,
- ACTIONS(2063), 1,
- anon_sym_AT,
- ACTIONS(2066), 1,
+ ACTIONS(2019), 1,
anon_sym_static,
- ACTIONS(2069), 1,
+ ACTIONS(2021), 1,
aux_sym_method_definition_token1,
- STATE(883), 1,
+ STATE(876), 1,
aux_sym_class_body_repeat1,
- STATE(926), 1,
+ STATE(910), 1,
aux_sym_export_statement_repeat1,
- STATE(970), 1,
+ STATE(958), 1,
sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
+ STATE(971), 1,
sym_class_static_block,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1491), 1,
+ STATE(1399), 1,
sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2060), 2,
+ ACTIONS(2017), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2072), 2,
+ ACTIONS(2023), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2034), 3,
+ ACTIONS(2001), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1136), 3,
+ STATE(1130), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38266] = 23,
- ACTIONS(93), 1,
+ [37731] = 21,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2006), 1,
+ ACTIONS(2003), 1,
anon_sym_STAR,
- ACTIONS(2012), 1,
+ ACTIONS(2009), 1,
anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2020), 1,
+ ACTIONS(2015), 1,
anon_sym_async,
- ACTIONS(2024), 1,
+ ACTIONS(2019), 1,
anon_sym_static,
- ACTIONS(2026), 1,
+ ACTIONS(2021), 1,
aux_sym_method_definition_token1,
- ACTIONS(2075), 1,
+ ACTIONS(2025), 1,
anon_sym_RBRACE,
- ACTIONS(2077), 1,
+ ACTIONS(2027), 1,
anon_sym_SEMI,
- STATE(888), 1,
+ STATE(872), 1,
aux_sym_class_body_repeat1,
- STATE(926), 1,
+ STATE(910), 1,
aux_sym_export_statement_repeat1,
- STATE(970), 1,
+ STATE(958), 1,
sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
+ STATE(971), 1,
sym_class_static_block,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1491), 1,
+ STATE(1399), 1,
sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2022), 2,
+ ACTIONS(2017), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2028), 2,
+ ACTIONS(2023), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2004), 3,
+ ACTIONS(2001), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1136), 3,
+ STATE(1130), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38343] = 23,
- ACTIONS(93), 1,
+ [37802] = 21,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2006), 1,
+ ACTIONS(2003), 1,
anon_sym_STAR,
- ACTIONS(2012), 1,
+ ACTIONS(2007), 1,
+ anon_sym_SEMI,
+ ACTIONS(2009), 1,
anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2020), 1,
+ ACTIONS(2015), 1,
anon_sym_async,
- ACTIONS(2024), 1,
+ ACTIONS(2019), 1,
anon_sym_static,
- ACTIONS(2026), 1,
+ ACTIONS(2021), 1,
aux_sym_method_definition_token1,
- ACTIONS(2079), 1,
+ ACTIONS(2029), 1,
anon_sym_RBRACE,
- ACTIONS(2081), 1,
- anon_sym_SEMI,
- STATE(886), 1,
+ STATE(876), 1,
aux_sym_class_body_repeat1,
- STATE(926), 1,
+ STATE(910), 1,
aux_sym_export_statement_repeat1,
- STATE(970), 1,
+ STATE(958), 1,
sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
+ STATE(971), 1,
sym_class_static_block,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1491), 1,
+ STATE(1399), 1,
sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2022), 2,
+ ACTIONS(2017), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2028), 2,
+ ACTIONS(2023), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2004), 3,
+ ACTIONS(2001), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1136), 3,
+ STATE(1130), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38420] = 23,
- ACTIONS(93), 1,
+ [37873] = 21,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2006), 1,
+ ACTIONS(2003), 1,
anon_sym_STAR,
- ACTIONS(2012), 1,
+ ACTIONS(2007), 1,
+ anon_sym_SEMI,
+ ACTIONS(2009), 1,
anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2020), 1,
+ ACTIONS(2015), 1,
anon_sym_async,
- ACTIONS(2024), 1,
+ ACTIONS(2019), 1,
anon_sym_static,
- ACTIONS(2026), 1,
+ ACTIONS(2021), 1,
aux_sym_method_definition_token1,
- ACTIONS(2032), 1,
- anon_sym_SEMI,
- ACTIONS(2083), 1,
+ ACTIONS(2031), 1,
anon_sym_RBRACE,
- STATE(883), 1,
+ STATE(876), 1,
aux_sym_class_body_repeat1,
- STATE(926), 1,
+ STATE(910), 1,
aux_sym_export_statement_repeat1,
- STATE(970), 1,
+ STATE(958), 1,
sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
+ STATE(971), 1,
sym_class_static_block,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1491), 1,
+ STATE(1399), 1,
sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2022), 2,
+ ACTIONS(2017), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2028), 2,
+ ACTIONS(2023), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2004), 3,
+ ACTIONS(2001), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1136), 3,
+ STATE(1130), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38497] = 23,
- ACTIONS(93), 1,
+ [37944] = 21,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2006), 1,
+ ACTIONS(2003), 1,
anon_sym_STAR,
- ACTIONS(2012), 1,
+ ACTIONS(2009), 1,
anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2020), 1,
+ ACTIONS(2015), 1,
anon_sym_async,
- ACTIONS(2024), 1,
+ ACTIONS(2019), 1,
anon_sym_static,
- ACTIONS(2026), 1,
+ ACTIONS(2021), 1,
aux_sym_method_definition_token1,
- ACTIONS(2085), 1,
+ ACTIONS(2033), 1,
anon_sym_RBRACE,
- ACTIONS(2087), 1,
+ ACTIONS(2035), 1,
anon_sym_SEMI,
- STATE(889), 1,
+ STATE(873), 1,
aux_sym_class_body_repeat1,
- STATE(926), 1,
+ STATE(910), 1,
aux_sym_export_statement_repeat1,
- STATE(970), 1,
+ STATE(958), 1,
sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
+ STATE(971), 1,
sym_class_static_block,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1491), 1,
+ STATE(1399), 1,
sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2022), 2,
+ ACTIONS(2017), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2028), 2,
+ ACTIONS(2023), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2004), 3,
+ ACTIONS(2001), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1136), 3,
+ STATE(1130), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38574] = 23,
- ACTIONS(93), 1,
+ [38015] = 18,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2006), 1,
+ ACTIONS(99), 1,
anon_sym_STAR,
- ACTIONS(2012), 1,
- anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
+ ACTIONS(119), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(702), 1,
+ anon_sym_DOT_DOT_DOT,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2020), 1,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2041), 1,
anon_sym_async,
- ACTIONS(2024), 1,
+ ACTIONS(2043), 1,
anon_sym_static,
- ACTIONS(2026), 1,
- aux_sym_method_definition_token1,
- ACTIONS(2032), 1,
- anon_sym_SEMI,
- ACTIONS(2089), 1,
- anon_sym_RBRACE,
- STATE(883), 1,
- aux_sym_class_body_repeat1,
- STATE(926), 1,
+ STATE(915), 1,
aux_sym_export_statement_repeat1,
- STATE(970), 1,
- sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
- sym_class_static_block,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1491), 1,
- sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2022), 2,
+ ACTIONS(1995), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2028), 2,
+ ACTIONS(2039), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ ACTIONS(2045), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2004), 3,
+ ACTIONS(2037), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1136), 3,
+ STATE(1301), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38651] = 23,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(2006), 1,
+ STATE(1430), 3,
+ sym_spread_element,
+ sym_method_definition,
+ sym_pair,
+ [38080] = 21,
+ ACTIONS(2050), 1,
anon_sym_STAR,
- ACTIONS(2012), 1,
+ ACTIONS(2053), 1,
+ anon_sym_RBRACE,
+ ACTIONS(2055), 1,
+ anon_sym_SEMI,
+ ACTIONS(2058), 1,
anon_sym_LBRACK,
- ACTIONS(2014), 1,
- sym_glimmer_opening_tag,
- ACTIONS(2016), 1,
+ ACTIONS(2061), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(2064), 1,
anon_sym_SQUOTE,
- ACTIONS(2020), 1,
+ ACTIONS(2067), 1,
anon_sym_async,
- ACTIONS(2024), 1,
+ ACTIONS(2073), 1,
+ anon_sym_AT,
+ ACTIONS(2076), 1,
anon_sym_static,
- ACTIONS(2026), 1,
+ ACTIONS(2079), 1,
aux_sym_method_definition_token1,
- ACTIONS(2032), 1,
- anon_sym_SEMI,
- ACTIONS(2091), 1,
- anon_sym_RBRACE,
- STATE(883), 1,
+ STATE(876), 1,
aux_sym_class_body_repeat1,
- STATE(926), 1,
+ STATE(910), 1,
aux_sym_export_statement_repeat1,
- STATE(970), 1,
+ STATE(958), 1,
sym_method_definition,
- STATE(974), 1,
- sym_glimmer_template,
- STATE(975), 1,
+ STATE(971), 1,
sym_class_static_block,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1491), 1,
+ STATE(1399), 1,
sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2022), 2,
+ ACTIONS(2070), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2028), 2,
+ ACTIONS(2082), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2004), 3,
+ ACTIONS(2047), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1136), 3,
+ STATE(1130), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38728] = 20,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
- anon_sym_STAR,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(709), 1,
+ [38151] = 14,
+ ACTIONS(673), 1,
anon_sym_DOT_DOT_DOT,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2095), 1,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(1889), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(2097), 1,
+ ACTIONS(2089), 1,
anon_sym_RBRACE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2101), 1,
- anon_sym_async,
- ACTIONS(2105), 1,
- anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- STATE(1371), 1,
- aux_sym_object_repeat1,
+ STATE(1312), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2103), 2,
+ ACTIONS(2091), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2107), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2093), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1361), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(1375), 3,
+ STATE(1281), 3,
+ sym_object_assignment_pattern,
+ sym_rest_pattern,
+ sym_pair_pattern,
+ STATE(1620), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [38798] = 18,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(101), 1,
- anon_sym_STAR,
- ACTIONS(121), 1,
- aux_sym_method_definition_token1,
- ACTIONS(709), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2113), 1,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ ACTIONS(2085), 7,
+ anon_sym_export,
+ anon_sym_let,
anon_sym_async,
- ACTIONS(2115), 1,
+ sym_identifier,
anon_sym_static,
- STATE(928), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2103), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2111), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(2117), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2109), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1375), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(1481), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- [38863] = 14,
- ACTIONS(683), 1,
+ [38208] = 14,
+ ACTIONS(673), 1,
anon_sym_DOT_DOT_DOT,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(1902), 1,
+ ACTIONS(1885), 1,
anon_sym_LBRACE,
- ACTIONS(1906), 1,
+ ACTIONS(1889), 1,
anon_sym_LBRACK,
- ACTIONS(2121), 1,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(2123), 1,
+ ACTIONS(2095), 1,
anon_sym_RBRACE,
- STATE(1360), 1,
+ STATE(1335), 1,
aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2125), 2,
+ ACTIONS(2091), 2,
sym_number,
sym_private_property_identifier,
- STATE(1309), 3,
+ STATE(1332), 3,
sym_object_assignment_pattern,
sym_rest_pattern,
sym_pair_pattern,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- STATE(1689), 3,
+ STATE(1620), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2119), 7,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ ACTIONS(2093), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -70740,82 +68983,89 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [38920] = 14,
- ACTIONS(683), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(861), 1,
+ [38265] = 21,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(2003), 1,
+ anon_sym_STAR,
+ ACTIONS(2009), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(1906), 1,
- anon_sym_LBRACK,
- ACTIONS(2121), 1,
- anon_sym_COMMA,
- ACTIONS(2129), 1,
+ ACTIONS(2015), 1,
+ anon_sym_async,
+ ACTIONS(2019), 1,
+ anon_sym_static,
+ ACTIONS(2021), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(2097), 1,
anon_sym_RBRACE,
- STATE(1370), 1,
- aux_sym_object_pattern_repeat1,
+ ACTIONS(2099), 1,
+ anon_sym_SEMI,
+ STATE(870), 1,
+ aux_sym_class_body_repeat1,
+ STATE(910), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(958), 1,
+ sym_method_definition,
+ STATE(971), 1,
+ sym_class_static_block,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1399), 1,
+ sym_field_definition,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2125), 2,
+ ACTIONS(2017), 2,
sym_number,
sym_private_property_identifier,
- STATE(1367), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- STATE(1689), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2127), 7,
+ ACTIONS(2023), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2001), 3,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [38977] = 12,
- ACTIONS(683), 1,
+ STATE(1130), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ [38336] = 12,
+ ACTIONS(673), 1,
anon_sym_DOT_DOT_DOT,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(1902), 1,
+ ACTIONS(1885), 1,
anon_sym_LBRACE,
- ACTIONS(1906), 1,
+ ACTIONS(1889), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2125), 2,
+ ACTIONS(2091), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2133), 2,
+ ACTIONS(2103), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
- STATE(1474), 3,
+ STATE(1421), 3,
sym_object_assignment_pattern,
sym_rest_pattern,
sym_pair_pattern,
- STATE(1672), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- STATE(1689), 3,
+ STATE(1620), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2131), 7,
+ STATE(1693), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ ACTIONS(2101), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -70823,574 +69073,650 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [39029] = 15,
- ACTIONS(103), 1,
+ [38388] = 15,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2137), 1,
+ ACTIONS(2107), 1,
anon_sym_RBRACE,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [39085] = 16,
- ACTIONS(103), 1,
+ [38444] = 16,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
+ ACTIONS(874), 1,
anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2137), 1,
- anon_sym_RBRACE,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
+ ACTIONS(2113), 1,
+ anon_sym_RBRACE,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
sym_identifier,
anon_sym_static,
- [39143] = 15,
- ACTIONS(103), 1,
+ [38502] = 15,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- ACTIONS(2143), 1,
+ ACTIONS(2115), 1,
anon_sym_RBRACE,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [39199] = 16,
- ACTIONS(103), 1,
+ [38558] = 16,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
+ ACTIONS(874), 1,
anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- ACTIONS(2143), 1,
+ ACTIONS(2115), 1,
anon_sym_RBRACE,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
sym_identifier,
anon_sym_static,
- [39257] = 16,
- ACTIONS(103), 1,
+ [38616] = 15,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(861), 1,
+ ACTIONS(792), 1,
+ anon_sym_RBRACE,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
- anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- ACTIONS(2145), 1,
- anon_sym_RBRACE,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1310), 1,
aux_sym_object_repeat1,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
+ anon_sym_async,
sym_identifier,
anon_sym_static,
- [39315] = 15,
- ACTIONS(103), 1,
+ [38672] = 16,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(845), 1,
- anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(874), 1,
+ anon_sym_async,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2107), 1,
+ anon_sym_RBRACE,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- [39371] = 15,
- ACTIONS(103), 1,
+ [38730] = 16,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(861), 1,
+ ACTIONS(792), 1,
+ anon_sym_RBRACE,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(874), 1,
+ anon_sym_async,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- ACTIONS(2145), 1,
- anon_sym_RBRACE,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1310), 1,
aux_sym_object_repeat1,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- [39427] = 16,
- ACTIONS(103), 1,
+ [38788] = 16,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(817), 1,
+ ACTIONS(800), 1,
anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
+ ACTIONS(874), 1,
anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1372), 1,
- aux_sym_object_repeat1,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
sym_identifier,
anon_sym_static,
- [39485] = 15,
- ACTIONS(103), 1,
+ [38846] = 15,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(843), 1,
+ ACTIONS(800), 1,
anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [39541] = 16,
- ACTIONS(103), 1,
+ [38902] = 16,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(843), 1,
+ ACTIONS(766), 1,
anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
+ ACTIONS(874), 1,
anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
sym_identifier,
anon_sym_static,
- [39599] = 16,
- ACTIONS(103), 1,
+ [38960] = 15,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(845), 1,
- anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
- anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
+ ACTIONS(2113), 1,
+ anon_sym_RBRACE,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
+ anon_sym_async,
sym_identifier,
anon_sym_static,
- [39657] = 15,
- ACTIONS(103), 1,
+ [39016] = 15,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(817), 1,
+ ACTIONS(766), 1,
anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1372), 1,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
- STATE(1373), 1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(860), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(876), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ STATE(1412), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 5,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ [39072] = 13,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ ACTIONS(2113), 1,
+ anon_sym_RBRACE,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ STATE(1412), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 7,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ [39123] = 13,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ ACTIONS(2115), 1,
+ anon_sym_RBRACE,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(860), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [39713] = 14,
- ACTIONS(2012), 1,
+ anon_sym_get,
+ anon_sym_set,
+ [39174] = 14,
+ ACTIONS(2009), 1,
anon_sym_LBRACK,
- ACTIONS(2016), 1,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2147), 1,
+ ACTIONS(2117), 1,
anon_sym_STAR,
- ACTIONS(2149), 1,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- ACTIONS(2151), 1,
+ ACTIONS(2121), 1,
anon_sym_async,
- ACTIONS(2157), 1,
+ ACTIONS(2127), 1,
sym__automatic_semicolon,
- STATE(969), 1,
+ STATE(962), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2153), 2,
+ ACTIONS(2123), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2155), 2,
+ ACTIONS(2125), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 3,
+ ACTIONS(2109), 3,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_EQ,
- STATE(1125), 3,
+ STATE(1111), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2004), 4,
+ ACTIONS(2001), 4,
anon_sym_export,
anon_sym_let,
sym_identifier,
anon_sym_static,
- [39766] = 13,
- ACTIONS(103), 1,
+ [39227] = 13,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(817), 1,
- anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2141), 1,
+ ACTIONS(2107), 1,
+ anon_sym_RBRACE,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1372), 1,
- aux_sym_object_repeat1,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -71398,37 +69724,37 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [39817] = 13,
- ACTIONS(103), 1,
+ [39278] = 13,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(845), 1,
+ ACTIONS(792), 1,
anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1310), 1,
aux_sym_object_repeat1,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -71436,37 +69762,37 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [39868] = 13,
- ACTIONS(103), 1,
+ [39329] = 13,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(861), 1,
+ ACTIONS(766), 1,
+ anon_sym_RBRACE,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- ACTIONS(2143), 1,
- anon_sym_RBRACE,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -71474,37 +69800,37 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [39919] = 13,
- ACTIONS(103), 1,
+ [39380] = 13,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(843), 1,
+ ACTIONS(800), 1,
anon_sym_RBRACE,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -71512,469 +69838,464 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [39970] = 13,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(861), 1,
+ [39431] = 13,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(874), 1,
+ anon_sym_async,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2137), 1,
- anon_sym_RBRACE,
- ACTIONS(2141), 1,
+ ACTIONS(2105), 1,
+ anon_sym_STAR,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
- aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
+ ACTIONS(876), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ ACTIONS(2130), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [40021] = 13,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(861), 1,
+ [39481] = 13,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2141), 1,
- anon_sym_EQ,
- ACTIONS(2145), 1,
+ ACTIONS(2105), 1,
+ anon_sym_STAR,
+ ACTIONS(2133), 1,
anon_sym_RBRACE,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1296), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
+ ACTIONS(876), 2,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [40072] = 12,
- ACTIONS(861), 1,
+ [39531] = 14,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(874), 1,
+ anon_sym_async,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
- anon_sym_EQ,
+ ACTIONS(2133), 1,
+ anon_sym_RBRACE,
+ STATE(1296), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- ACTIONS(2160), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- [40120] = 18,
- ACTIONS(93), 1,
+ [39583] = 18,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2163), 1,
+ ACTIONS(2135), 1,
anon_sym_export,
- ACTIONS(2165), 1,
+ ACTIONS(2137), 1,
anon_sym_STAR,
- ACTIONS(2167), 1,
+ ACTIONS(2139), 1,
anon_sym_class,
- ACTIONS(2169), 1,
+ ACTIONS(2141), 1,
anon_sym_async,
- ACTIONS(2173), 1,
+ ACTIONS(2145), 1,
anon_sym_static,
- ACTIONS(2175), 1,
+ ACTIONS(2147), 1,
aux_sym_method_definition_token1,
- ACTIONS(2177), 1,
+ ACTIONS(2149), 1,
anon_sym_get,
- ACTIONS(2179), 1,
+ ACTIONS(2151), 1,
anon_sym_set,
- STATE(973), 1,
+ STATE(944), 1,
aux_sym_export_statement_repeat1,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(879), 2,
+ ACTIONS(872), 2,
anon_sym_let,
sym_identifier,
- ACTIONS(2171), 2,
+ ACTIONS(2143), 2,
sym_number,
sym_private_property_identifier,
- STATE(1494), 3,
+ STATE(1588), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [40180] = 13,
- ACTIONS(861), 1,
+ [39643] = 12,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
- anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- ACTIONS(2160), 2,
+ ACTIONS(2130), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
+ anon_sym_async,
sym_identifier,
anon_sym_static,
- [40230] = 13,
- ACTIONS(861), 1,
+ [39691] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2095), 1,
- anon_sym_COMMA,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
- ACTIONS(2181), 1,
- anon_sym_RBRACE,
- STATE(1387), 1,
- aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- STATE(1488), 3,
+ ACTIONS(2153), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [40280] = 14,
- ACTIONS(861), 1,
+ [39736] = 10,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
- anon_sym_async,
- ACTIONS(2095), 1,
- anon_sym_COMMA,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2155), 1,
anon_sym_STAR,
- ACTIONS(2181), 1,
- anon_sym_RBRACE,
- STATE(1387), 1,
- aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(2157), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(2159), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1484), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(2109), 4,
+ sym__automatic_semicolon,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
+ anon_sym_async,
sym_identifier,
anon_sym_static,
- [40332] = 11,
- ACTIONS(861), 1,
+ [39779] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2183), 1,
+ ACTIONS(2161), 1,
anon_sym_STAR,
- ACTIONS(2187), 1,
+ ACTIONS(2165), 1,
anon_sym_get,
- ACTIONS(2189), 1,
+ ACTIONS(2167), 1,
anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2185), 2,
+ ACTIONS(2163), 2,
sym_number,
sym_private_property_identifier,
- STATE(1535), 3,
+ STATE(1486), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
+ ACTIONS(2109), 4,
sym__automatic_semicolon,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_EQ,
- ACTIONS(879), 5,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [40377] = 11,
- ACTIONS(861), 1,
+ [39824] = 10,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2191), 1,
+ ACTIONS(2117), 1,
anon_sym_STAR,
- ACTIONS(2195), 1,
- anon_sym_get,
- ACTIONS(2197), 1,
- anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2193), 2,
+ ACTIONS(2169), 2,
sym_number,
sym_private_property_identifier,
- STATE(1518), 3,
+ ACTIONS(2171), 2,
+ anon_sym_get,
+ anon_sym_set,
+ STATE(1458), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
+ ACTIONS(2109), 4,
sym__automatic_semicolon,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_EQ,
- ACTIONS(879), 5,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [40422] = 11,
- ACTIONS(861), 1,
+ [39867] = 12,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(874), 1,
+ anon_sym_async,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- ACTIONS(2199), 2,
+ ACTIONS(2153), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- [40467] = 12,
- ACTIONS(861), 1,
+ [39914] = 16,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(2009), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
- anon_sym_async,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2173), 1,
anon_sym_STAR,
+ ACTIONS(2175), 1,
+ anon_sym_async,
+ ACTIONS(2179), 1,
+ anon_sym_static,
+ ACTIONS(2181), 1,
+ aux_sym_method_definition_token1,
+ ACTIONS(2183), 1,
+ anon_sym_get,
+ ACTIONS(2185), 1,
+ anon_sym_set,
+ STATE(944), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(2177), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- ACTIONS(2199), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(1488), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(2001), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- anon_sym_static,
- [40514] = 11,
- ACTIONS(861), 1,
+ STATE(1114), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ [39969] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2095), 1,
- anon_sym_COMMA,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2181), 1,
- anon_sym_RBRACE,
- STATE(1387), 1,
- aux_sym_object_repeat1,
+ ACTIONS(2187), 1,
+ anon_sym_STAR,
+ ACTIONS(2191), 1,
+ anon_sym_get,
+ ACTIONS(2193), 1,
+ anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(2189), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- STATE(1488), 3,
+ STATE(1504), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(2109), 4,
+ sym__automatic_semicolon,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [40559] = 10,
- ACTIONS(861), 1,
+ [40014] = 10,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- ACTIONS(2160), 2,
+ ACTIONS(2130), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -71982,215 +70303,195 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [40602] = 10,
- ACTIONS(861), 1,
+ [40057] = 12,
+ ACTIONS(2009), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2147), 1,
+ ACTIONS(2195), 1,
anon_sym_STAR,
+ ACTIONS(2197), 1,
+ anon_sym_async,
+ ACTIONS(2201), 1,
+ anon_sym_get,
+ ACTIONS(2203), 1,
+ anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2201), 2,
+ ACTIONS(2199), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2203), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1492), 3,
+ STATE(1109), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_EQ,
- ACTIONS(879), 5,
+ ACTIONS(2001), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- [40645] = 16,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(2012), 1,
- anon_sym_LBRACK,
- ACTIONS(2016), 1,
+ ACTIONS(2109), 4,
+ sym__automatic_semicolon,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ [40104] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2205), 1,
- anon_sym_STAR,
- ACTIONS(2207), 1,
- anon_sym_async,
- ACTIONS(2211), 1,
- anon_sym_static,
- ACTIONS(2213), 1,
- aux_sym_method_definition_token1,
- ACTIONS(2215), 1,
- anon_sym_get,
- ACTIONS(2217), 1,
- anon_sym_set,
- STATE(973), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2209), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2004), 3,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- STATE(1133), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- [40700] = 12,
- ACTIONS(2012), 1,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2016), 1,
- anon_sym_DQUOTE,
- ACTIONS(2018), 1,
- anon_sym_SQUOTE,
- ACTIONS(2219), 1,
- anon_sym_STAR,
- ACTIONS(2221), 1,
- anon_sym_async,
- ACTIONS(2225), 1,
- anon_sym_get,
- ACTIONS(2227), 1,
- anon_sym_set,
+ ACTIONS(2133), 1,
+ anon_sym_RBRACE,
+ STATE(1296), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2223), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- STATE(1127), 3,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2004), 4,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
+ anon_sym_async,
sym_identifier,
anon_sym_static,
- ACTIONS(2139), 4,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_EQ,
- [40747] = 16,
- ACTIONS(93), 1,
+ anon_sym_get,
+ anon_sym_set,
+ [40149] = 16,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(861), 1,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2165), 1,
+ ACTIONS(2137), 1,
anon_sym_STAR,
- ACTIONS(2169), 1,
+ ACTIONS(2141), 1,
anon_sym_async,
- ACTIONS(2173), 1,
+ ACTIONS(2145), 1,
anon_sym_static,
- ACTIONS(2175), 1,
+ ACTIONS(2147), 1,
aux_sym_method_definition_token1,
- ACTIONS(2177), 1,
+ ACTIONS(2149), 1,
anon_sym_get,
- ACTIONS(2179), 1,
+ ACTIONS(2151), 1,
anon_sym_set,
- STATE(973), 1,
+ STATE(944), 1,
aux_sym_export_statement_repeat1,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2171), 2,
+ ACTIONS(2143), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(879), 3,
+ ACTIONS(872), 3,
anon_sym_export,
anon_sym_let,
sym_identifier,
- STATE(1494), 3,
+ STATE(1588), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- [40802] = 10,
- ACTIONS(861), 1,
+ [40204] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2229), 1,
- anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2231), 2,
+ ACTIONS(2157), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2233), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1516), 3,
+ STATE(1484), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
+ ACTIONS(2109), 4,
sym__automatic_semicolon,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_EQ,
- ACTIONS(879), 5,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [40845] = 3,
+ anon_sym_get,
+ anon_sym_set,
+ [40242] = 6,
+ ACTIONS(2209), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2211), 1,
+ anon_sym_DOT,
+ STATE(1004), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2205), 8,
anon_sym_export,
anon_sym_let,
+ anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2207), 8,
anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [40873] = 3,
+ [40276] = 8,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2213), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1489), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(2109), 4,
+ sym__automatic_semicolon,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72198,24 +70499,29 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
- anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ [40314] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [40901] = 3,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2215), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1488), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(2109), 4,
+ sym__automatic_semicolon,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72223,42 +70529,29 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
- anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [40929] = 8,
- ACTIONS(861), 1,
+ [40352] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2239), 2,
+ ACTIONS(2217), 2,
sym_number,
sym_private_property_identifier,
- STATE(1536), 3,
+ STATE(1505), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
+ ACTIONS(2109), 4,
sym__automatic_semicolon,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_EQ,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72266,29 +70559,29 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [40967] = 8,
- ACTIONS(861), 1,
+ [40390] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2241), 2,
+ ACTIONS(2169), 2,
sym_number,
sym_private_property_identifier,
- STATE(1537), 3,
+ STATE(1458), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
+ ACTIONS(2109), 4,
sym__automatic_semicolon,
anon_sym_LPAREN,
anon_sym_SEMI,
anon_sym_EQ,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72296,11 +70589,30 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [41005] = 3,
+ [40428] = 9,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(860), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ ACTIONS(2153), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ STATE(1412), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72308,40 +70620,53 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
- anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ [40468] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [41033] = 6,
- ACTIONS(2247), 1,
- anon_sym_LPAREN,
- ACTIONS(2249), 1,
- anon_sym_DOT,
- STATE(1007), 1,
- sym_arguments,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2243), 8,
- anon_sym_export,
- anon_sym_let,
- anon_sym_class,
- anon_sym_async,
- sym_identifier,
+ ACTIONS(2219), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1506), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(2109), 4,
+ sym__automatic_semicolon,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ ACTIONS(872), 7,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2245), 8,
+ [40506] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2221), 7,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2223), 11,
anon_sym_STAR,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
anon_sym_LBRACK,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
@@ -72349,11 +70674,11 @@ static const uint16_t ts_small_parse_table[] = {
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41067] = 3,
+ [40533] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72361,24 +70686,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41095] = 3,
+ [40560] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2229), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72386,24 +70710,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2231), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41123] = 3,
+ [40587] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72411,26 +70734,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41151] = 4,
- ACTIONS(2251), 1,
- sym__automatic_semicolon,
+ [40614] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(572), 7,
+ ACTIONS(2229), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72438,23 +70758,47 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(570), 11,
+ ACTIONS(2231), 11,
anon_sym_STAR,
+ anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41181] = 3,
+ [40641] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2233), 9,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_DOT,
+ anon_sym_class,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2235), 9,
+ anon_sym_STAR,
+ anon_sym_LPAREN,
+ anon_sym_LBRACK,
+ anon_sym_DQUOTE,
+ anon_sym_SQUOTE,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [40668] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2253), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72462,24 +70806,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2255), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41209] = 3,
+ [40695] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72487,43 +70830,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41237] = 9,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
+ [40722] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- ACTIONS(2199), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(1488), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(2229), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72531,11 +70854,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [41277] = 3,
+ ACTIONS(2231), 11,
+ anon_sym_STAR,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DQUOTE,
+ anon_sym_SQUOTE,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [40749] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2257), 7,
+ ACTIONS(2229), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72543,24 +70878,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2259), 12,
+ ACTIONS(2231), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41305] = 3,
+ [40776] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2261), 7,
+ ACTIONS(2237), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72568,26 +70902,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2263), 12,
+ ACTIONS(2239), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41333] = 4,
- ACTIONS(2265), 1,
- sym__automatic_semicolon,
+ [40803] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(510), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72595,23 +70926,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(508), 11,
+ ACTIONS(2227), 11,
anon_sym_STAR,
+ anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41363] = 3,
+ [40830] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2267), 7,
+ ACTIONS(2241), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72619,24 +70950,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2269), 12,
+ ACTIONS(2243), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41391] = 3,
+ [40857] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2271), 7,
+ ACTIONS(2245), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72644,24 +70974,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2273), 12,
+ ACTIONS(2247), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41419] = 3,
+ [40884] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2267), 7,
+ ACTIONS(2245), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72669,24 +70998,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2269), 12,
+ ACTIONS(2247), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41447] = 3,
+ [40911] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2267), 7,
+ ACTIONS(2245), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72694,24 +71022,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2269), 12,
+ ACTIONS(2247), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41475] = 3,
+ [40938] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2267), 7,
+ ACTIONS(2245), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72719,24 +71046,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2269), 12,
+ ACTIONS(2247), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41503] = 3,
+ [40965] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2267), 7,
+ ACTIONS(2245), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72744,24 +71070,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2269), 12,
+ ACTIONS(2247), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41531] = 3,
+ [40992] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2275), 7,
+ ACTIONS(2245), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72769,24 +71094,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2277), 12,
+ ACTIONS(2247), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41559] = 3,
+ [41019] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2275), 7,
+ ACTIONS(2229), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72794,24 +71118,50 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2277), 12,
+ ACTIONS(2231), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41587] = 3,
+ [41046] = 6,
+ ACTIONS(2253), 1,
+ anon_sym_AT,
+ STATE(944), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2251), 7,
+ anon_sym_STAR,
+ anon_sym_LBRACK,
+ anon_sym_DQUOTE,
+ anon_sym_SQUOTE,
+ sym_number,
+ sym_private_property_identifier,
+ aux_sym_method_definition_token1,
+ ACTIONS(2249), 8,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_class,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ [41079] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2275), 7,
+ ACTIONS(2229), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72819,24 +71169,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2277), 12,
+ ACTIONS(2231), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41615] = 3,
+ [41106] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2275), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72844,24 +71193,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2277), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41643] = 3,
+ [41133] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2275), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72869,24 +71217,25 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2277), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41671] = 3,
+ [41160] = 4,
+ ACTIONS(2256), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2275), 7,
+ ACTIONS(501), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72894,24 +71243,22 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2277), 12,
+ ACTIONS(499), 10,
anon_sym_STAR,
- anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41699] = 3,
+ [41189] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72919,24 +71266,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41727] = 3,
+ [41216] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2258), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72944,42 +71290,73 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2260), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41755] = 8,
- ACTIONS(861), 1,
+ [41243] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2225), 7,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2227), 11,
+ anon_sym_STAR,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [41270] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2201), 2,
+ ACTIONS(2225), 7,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(2227), 11,
+ anon_sym_STAR,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DQUOTE,
+ anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
- STATE(1492), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2139), 4,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [41297] = 4,
+ ACTIONS(2262), 1,
sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_EQ,
- ACTIONS(879), 7,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(505), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72987,11 +71364,22 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [41793] = 3,
+ ACTIONS(503), 10,
+ anon_sym_STAR,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DQUOTE,
+ anon_sym_SQUOTE,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [41326] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2235), 7,
+ ACTIONS(2225), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -72999,24 +71387,23 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2237), 12,
+ ACTIONS(2227), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41821] = 3,
+ [41353] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2279), 7,
+ ACTIONS(2264), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73024,42 +71411,71 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2281), 12,
+ ACTIONS(2266), 11,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [41849] = 8,
- ACTIONS(861), 1,
+ [41380] = 3,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(501), 7,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(499), 10,
+ anon_sym_STAR,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [41406] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2231), 2,
+ ACTIONS(521), 7,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ anon_sym_get,
+ anon_sym_set,
+ ACTIONS(519), 10,
+ anon_sym_STAR,
+ anon_sym_RBRACE,
+ anon_sym_SEMI,
+ anon_sym_LBRACK,
+ anon_sym_DQUOTE,
+ anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
- STATE(1516), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2139), 4,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [41432] = 4,
+ ACTIONS(2272), 1,
anon_sym_SEMI,
- anon_sym_EQ,
- ACTIONS(879), 7,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2268), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73067,29 +71483,38 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [41887] = 8,
- ACTIONS(861), 1,
+ ACTIONS(2270), 9,
+ anon_sym_STAR,
+ anon_sym_RBRACE,
+ anon_sym_LBRACK,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [41460] = 9,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2275), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2283), 2,
+ ACTIONS(2277), 2,
sym_number,
sym_private_property_identifier,
- STATE(1520), 3,
+ STATE(1610), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_EQ,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73097,66 +71522,72 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [41925] = 8,
- ACTIONS(861), 1,
+ [41498] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2279), 1,
+ anon_sym_STAR,
+ ACTIONS(2283), 1,
+ anon_sym_get,
+ ACTIONS(2285), 1,
+ anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2285), 2,
+ ACTIONS(2281), 2,
sym_number,
sym_private_property_identifier,
- STATE(1521), 3,
+ STATE(1462), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(2139), 4,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_EQ,
- ACTIONS(879), 7,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [41963] = 3,
+ [41540] = 10,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2287), 1,
+ anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2267), 7,
+ ACTIONS(2277), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(2289), 2,
+ anon_sym_get,
+ anon_sym_set,
+ STATE(1610), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2269), 12,
- anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [41991] = 3,
+ [41580] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1547), 7,
+ ACTIONS(2291), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73164,23 +71595,22 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(1549), 11,
+ ACTIONS(2293), 10,
anon_sym_STAR,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [42018] = 3,
+ [41606] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2287), 7,
+ ACTIONS(2295), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73188,72 +71618,179 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2289), 11,
+ ACTIONS(2297), 10,
anon_sym_STAR,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [42045] = 4,
- ACTIONS(2295), 1,
- anon_sym_SEMI,
+ [41632] = 13,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(768), 1,
+ anon_sym_var,
+ ACTIONS(782), 1,
+ anon_sym_class,
+ ACTIONS(784), 1,
+ anon_sym_async,
+ ACTIONS(786), 1,
+ anon_sym_function,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2299), 1,
+ anon_sym_default,
+ STATE(378), 1,
+ sym_declaration,
+ STATE(1006), 1,
+ sym_decorator,
+ STATE(1220), 1,
+ aux_sym_export_statement_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2291), 7,
+ ACTIONS(770), 2,
+ anon_sym_let,
+ anon_sym_const,
+ STATE(412), 5,
+ sym_variable_declaration,
+ sym_lexical_declaration,
+ sym_class_declaration,
+ sym_function_declaration,
+ sym_generator_function_declaration,
+ [41678] = 11,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2301), 1,
+ anon_sym_STAR,
+ ACTIONS(2305), 1,
+ anon_sym_get,
+ ACTIONS(2307), 1,
+ anon_sym_set,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2303), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1578), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2293), 10,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ [41720] = 12,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2309), 1,
+ anon_sym_STAR,
+ ACTIONS(2311), 1,
+ anon_sym_async,
+ ACTIONS(2315), 1,
+ anon_sym_get,
+ ACTIONS(2317), 1,
+ anon_sym_set,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2313), 2,
sym_number,
sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42074] = 3,
+ STATE(1558), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 4,
+ anon_sym_export,
+ anon_sym_let,
+ sym_identifier,
+ anon_sym_static,
+ [41764] = 10,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2155), 1,
+ anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2298), 7,
+ ACTIONS(2157), 2,
+ sym_number,
+ sym_private_property_identifier,
+ ACTIONS(2159), 2,
+ anon_sym_get,
+ anon_sym_set,
+ STATE(1484), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2300), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ [41804] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2319), 1,
+ anon_sym_STAR,
+ ACTIONS(2323), 1,
+ anon_sym_get,
+ ACTIONS(2325), 1,
+ anon_sym_set,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2321), 2,
sym_number,
sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42101] = 3,
+ STATE(1508), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 5,
+ anon_sym_export,
+ anon_sym_let,
+ anon_sym_async,
+ sym_identifier,
+ anon_sym_static,
+ [41846] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(580), 7,
+ ACTIONS(2327), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73261,50 +71798,53 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(578), 11,
+ ACTIONS(2329), 10,
anon_sym_STAR,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [42128] = 6,
- ACTIONS(2306), 1,
- anon_sym_AT,
- STATE(973), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
+ [41872] = 11,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2331), 1,
+ anon_sym_STAR,
+ ACTIONS(2335), 1,
+ anon_sym_get,
+ ACTIONS(2337), 1,
+ anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2304), 7,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
+ ACTIONS(2333), 2,
sym_number,
sym_private_property_identifier,
- aux_sym_method_definition_token1,
- ACTIONS(2302), 8,
+ STATE(1405), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 5,
anon_sym_export,
anon_sym_let,
- anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [42161] = 3,
+ [41914] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2309), 7,
+ ACTIONS(2268), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73312,23 +71852,37 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2311), 11,
+ ACTIONS(2270), 10,
anon_sym_STAR,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LBRACK,
- sym_glimmer_opening_tag,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
sym_number,
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [42188] = 3,
+ [41940] = 8,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2291), 7,
+ ACTIONS(2157), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1484), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73336,23 +71890,26 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2293), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ [41975] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42215] = 3,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2313), 7,
+ ACTIONS(2339), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1605), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73360,23 +71917,26 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2315), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ [42010] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42242] = 3,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(572), 7,
+ ACTIONS(2341), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1409), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73384,23 +71944,26 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(570), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
+ [42045] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42269] = 3,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1456), 7,
+ ACTIONS(2343), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1585), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73408,35 +71971,21 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(1458), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42296] = 3,
+ [42080] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2317), 9,
+ ACTIONS(1448), 8,
anon_sym_export,
anon_sym_let,
- anon_sym_DOT,
anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2319), 9,
+ ACTIONS(1450), 8,
anon_sym_STAR,
- anon_sym_LPAREN,
anon_sym_LBRACK,
anon_sym_DQUOTE,
anon_sym_SQUOTE,
@@ -73444,397 +71993,281 @@ static const uint16_t ts_small_parse_table[] = {
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [42323] = 10,
- ACTIONS(861), 1,
+ [42105] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
- ACTIONS(2321), 1,
- anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2323), 2,
+ ACTIONS(2345), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2325), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1567), 3,
+ STATE(1408), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [42363] = 12,
- ACTIONS(861), 1,
+ anon_sym_get,
+ anon_sym_set,
+ [42140] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
- ACTIONS(2327), 1,
+ ACTIONS(2347), 1,
anon_sym_STAR,
- ACTIONS(2329), 1,
+ ACTIONS(2349), 1,
anon_sym_async,
- ACTIONS(2333), 1,
+ ACTIONS(2353), 1,
anon_sym_get,
- ACTIONS(2335), 1,
+ ACTIONS(2355), 1,
anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2331), 2,
+ ACTIONS(2351), 2,
sym_number,
sym_private_property_identifier,
- STATE(1427), 3,
+ STATE(1410), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
sym_identifier,
anon_sym_static,
- [42407] = 11,
- ACTIONS(861), 1,
+ [42181] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
- ACTIONS(2337), 1,
- anon_sym_STAR,
- ACTIONS(2341), 1,
- anon_sym_get,
- ACTIONS(2343), 1,
- anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2339), 2,
+ ACTIONS(2357), 2,
sym_number,
sym_private_property_identifier,
- STATE(1462), 3,
+ STATE(1414), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [42449] = 10,
- ACTIONS(861), 1,
+ anon_sym_get,
+ anon_sym_set,
+ [42216] = 10,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
- ACTIONS(2229), 1,
+ ACTIONS(2117), 1,
anon_sym_STAR,
+ ACTIONS(2359), 1,
+ anon_sym_async,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2231), 2,
+ ACTIONS(2169), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2233), 2,
+ ACTIONS(2171), 2,
anon_sym_get,
anon_sym_set,
- STATE(1516), 3,
+ STATE(1458), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- [42489] = 13,
- ACTIONS(93), 1,
+ [42255] = 12,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(819), 1,
+ ACTIONS(768), 1,
anon_sym_var,
- ACTIONS(833), 1,
+ ACTIONS(782), 1,
anon_sym_class,
- ACTIONS(835), 1,
+ ACTIONS(784), 1,
anon_sym_async,
- ACTIONS(837), 1,
+ ACTIONS(786), 1,
anon_sym_function,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
- ACTIONS(2345), 1,
+ ACTIONS(2361), 1,
anon_sym_default,
- STATE(411), 1,
+ STATE(378), 1,
sym_declaration,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1257), 1,
+ STATE(1220), 1,
aux_sym_export_statement_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(821), 2,
+ ACTIONS(770), 2,
anon_sym_let,
anon_sym_const,
- STATE(407), 5,
+ STATE(412), 5,
sym_variable_declaration,
sym_lexical_declaration,
sym_class_declaration,
sym_function_declaration,
sym_generator_function_declaration,
- [42535] = 11,
- ACTIONS(861), 1,
+ [42298] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
- ACTIONS(2347), 1,
- anon_sym_STAR,
- ACTIONS(2351), 1,
- anon_sym_get,
- ACTIONS(2353), 1,
- anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2349), 2,
+ ACTIONS(2277), 2,
sym_number,
sym_private_property_identifier,
- STATE(1408), 3,
+ STATE(1610), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [42577] = 11,
- ACTIONS(861), 1,
+ anon_sym_get,
+ anon_sym_set,
+ [42333] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
- ACTIONS(2355), 1,
- anon_sym_STAR,
- ACTIONS(2359), 1,
- anon_sym_get,
- ACTIONS(2361), 1,
- anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2357), 2,
+ ACTIONS(2363), 2,
sym_number,
sym_private_property_identifier,
- STATE(1539), 3,
+ STATE(1571), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 5,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
sym_identifier,
anon_sym_static,
- [42619] = 11,
- ACTIONS(861), 1,
+ anon_sym_get,
+ anon_sym_set,
+ [42368] = 11,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
- ACTIONS(2363), 1,
+ ACTIONS(2365), 1,
anon_sym_STAR,
ACTIONS(2367), 1,
- anon_sym_get,
- ACTIONS(2369), 1,
- anon_sym_set,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2365), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1448), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 5,
- anon_sym_export,
- anon_sym_let,
anon_sym_async,
- sym_identifier,
- anon_sym_static,
- [42661] = 9,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
ACTIONS(2371), 1,
- anon_sym_EQ_GT,
+ anon_sym_get,
+ ACTIONS(2373), 1,
+ anon_sym_set,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2323), 2,
+ ACTIONS(2369), 2,
sym_number,
sym_private_property_identifier,
- STATE(1567), 3,
+ STATE(1487), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
- anon_sym_async,
sym_identifier,
anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [42699] = 8,
- ACTIONS(861), 1,
+ [42409] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2373), 2,
+ ACTIONS(2375), 2,
sym_number,
sym_private_property_identifier,
- STATE(1533), 3,
+ STATE(1499), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [42734] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1448), 8,
- anon_sym_export,
- anon_sym_let,
- anon_sym_class,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(1450), 8,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42759] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2375), 8,
- anon_sym_export,
- anon_sym_let,
- anon_sym_class,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(2377), 8,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42784] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2243), 8,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
- anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2245), 8,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [42809] = 8,
- ACTIONS(861), 1,
+ [42444] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2323), 2,
+ ACTIONS(2377), 2,
sym_number,
sym_private_property_identifier,
- STATE(1567), 3,
+ STATE(1501), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73842,45 +72275,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [42844] = 12,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(819), 1,
- anon_sym_var,
- ACTIONS(833), 1,
- anon_sym_class,
- ACTIONS(835), 1,
- anon_sym_async,
- ACTIONS(837), 1,
- anon_sym_function,
- ACTIONS(2345), 1,
- anon_sym_default,
- STATE(411), 1,
- sym_declaration,
- STATE(991), 1,
- sym_decorator,
- STATE(1257), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(821), 2,
- anon_sym_let,
- anon_sym_const,
- STATE(407), 5,
- sym_variable_declaration,
- sym_lexical_declaration,
- sym_class_declaration,
- sym_function_declaration,
- sym_generator_function_declaration,
- [42887] = 8,
- ACTIONS(861), 1,
+ [42479] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -73888,11 +72290,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2379), 2,
sym_number,
sym_private_property_identifier,
- STATE(1401), 3,
+ STATE(1467), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73900,43 +72302,43 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [42922] = 10,
- ACTIONS(861), 1,
+ [42514] = 10,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(881), 1,
+ ACTIONS(874), 1,
anon_sym_async,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2135), 1,
+ ACTIONS(2105), 1,
anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(883), 2,
+ ACTIONS(876), 2,
anon_sym_get,
anon_sym_set,
- STATE(1488), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 4,
anon_sym_export,
anon_sym_let,
sym_identifier,
anon_sym_static,
- [42961] = 8,
- ACTIONS(861), 1,
+ [42553] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -73944,11 +72346,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2381), 2,
sym_number,
sym_private_property_identifier,
- STATE(1573), 3,
+ STATE(1509), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73956,14 +72358,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [42996] = 8,
- ACTIONS(861), 1,
+ [42588] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -73971,11 +72373,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2383), 2,
sym_number,
sym_private_property_identifier,
- STATE(1578), 3,
+ STATE(1614), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -73983,14 +72385,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43031] = 8,
- ACTIONS(861), 1,
+ [42623] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -73998,11 +72400,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2385), 2,
sym_number,
sym_private_property_identifier,
- STATE(1422), 3,
+ STATE(1531), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74010,14 +72412,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43066] = 8,
- ACTIONS(861), 1,
+ [42658] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -74025,11 +72427,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2387), 2,
sym_number,
sym_private_property_identifier,
- STATE(1423), 3,
+ STATE(1532), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74037,14 +72439,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43101] = 8,
- ACTIONS(861), 1,
+ [42693] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -74052,11 +72454,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2389), 2,
sym_number,
sym_private_property_identifier,
- STATE(1593), 3,
+ STATE(1516), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74064,14 +72466,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43136] = 8,
- ACTIONS(861), 1,
+ [42728] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -74079,11 +72481,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2391), 2,
sym_number,
sym_private_property_identifier,
- STATE(1450), 3,
+ STATE(1517), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74091,14 +72493,14 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43171] = 8,
- ACTIONS(861), 1,
+ [42763] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
@@ -74106,11 +72508,11 @@ static const uint16_t ts_small_parse_table[] = {
ACTIONS(2393), 2,
sym_number,
sym_private_property_identifier,
- STATE(1454), 3,
+ STATE(1519), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74118,56 +72520,80 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43206] = 11,
- ACTIONS(861), 1,
+ [42798] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2395), 1,
- anon_sym_STAR,
- ACTIONS(2397), 1,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2395), 2,
+ sym_number,
+ sym_private_property_identifier,
+ STATE(1520), 3,
+ sym_string,
+ sym__property_name,
+ sym_computed_property_name,
+ ACTIONS(872), 7,
+ anon_sym_export,
+ anon_sym_let,
anon_sym_async,
- ACTIONS(2401), 1,
+ sym_identifier,
+ anon_sym_static,
anon_sym_get,
- ACTIONS(2403), 1,
anon_sym_set,
+ [42833] = 8,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(1991), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2399), 2,
+ ACTIONS(2397), 2,
sym_number,
sym_private_property_identifier,
- STATE(1436), 3,
+ STATE(1422), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 4,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
+ anon_sym_async,
sym_identifier,
anon_sym_static,
- [43247] = 8,
- ACTIONS(861), 1,
+ anon_sym_get,
+ anon_sym_set,
+ [42868] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2405), 2,
+ ACTIONS(2399), 2,
sym_number,
sym_private_property_identifier,
- STATE(1437), 3,
+ STATE(1553), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74175,26 +72601,26 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43282] = 8,
- ACTIONS(861), 1,
+ [42903] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2407), 2,
+ ACTIONS(2401), 2,
sym_number,
sym_private_property_identifier,
- STATE(1438), 3,
+ STATE(1554), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74202,11 +72628,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43317] = 3,
+ [42938] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2409), 8,
+ ACTIONS(1512), 8,
anon_sym_export,
anon_sym_let,
anon_sym_class,
@@ -74215,7 +72641,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(2411), 8,
+ ACTIONS(1514), 8,
anon_sym_STAR,
anon_sym_LBRACK,
anon_sym_DQUOTE,
@@ -74224,182 +72650,86 @@ static const uint16_t ts_small_parse_table[] = {
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [43342] = 8,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
+ [42963] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2413), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1463), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(1528), 8,
anon_sym_export,
anon_sym_let,
+ anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43377] = 8,
- ACTIONS(861), 1,
+ ACTIONS(1530), 8,
+ anon_sym_STAR,
+ anon_sym_LBRACK,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
+ sym_number,
+ sym_private_property_identifier,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [42988] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2415), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1464), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(2205), 8,
anon_sym_export,
anon_sym_let,
+ anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43412] = 10,
- ACTIONS(861), 1,
+ ACTIONS(2207), 8,
+ anon_sym_STAR,
+ anon_sym_LBRACK,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2147), 1,
- anon_sym_STAR,
- ACTIONS(2417), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2201), 2,
sym_number,
sym_private_property_identifier,
- ACTIONS(2203), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1492), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 4,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- anon_sym_static,
- [43451] = 12,
- ACTIONS(93), 1,
anon_sym_AT,
- ACTIONS(819), 1,
+ aux_sym_method_definition_token1,
+ [43013] = 12,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(768), 1,
anon_sym_var,
- ACTIONS(833), 1,
+ ACTIONS(782), 1,
anon_sym_class,
- ACTIONS(835), 1,
+ ACTIONS(784), 1,
anon_sym_async,
- ACTIONS(837), 1,
+ ACTIONS(786), 1,
anon_sym_function,
- ACTIONS(2419), 1,
+ ACTIONS(2299), 1,
anon_sym_default,
- STATE(411), 1,
+ STATE(378), 1,
sym_declaration,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
- STATE(1257), 1,
+ STATE(1220), 1,
aux_sym_export_statement_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(821), 2,
+ ACTIONS(770), 2,
anon_sym_let,
anon_sym_const,
- STATE(407), 5,
+ STATE(412), 5,
sym_variable_declaration,
sym_lexical_declaration,
sym_class_declaration,
sym_function_declaration,
sym_generator_function_declaration,
- [43494] = 8,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
+ [43056] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2231), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1516), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [43529] = 11,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2421), 1,
- anon_sym_STAR,
- ACTIONS(2423), 1,
- anon_sym_async,
- ACTIONS(2427), 1,
- anon_sym_get,
- ACTIONS(2429), 1,
- anon_sym_set,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2425), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1519), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 4,
- anon_sym_export,
- anon_sym_let,
- sym_identifier,
- anon_sym_static,
- [43570] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1494), 8,
+ ACTIONS(2403), 8,
anon_sym_export,
anon_sym_let,
anon_sym_class,
@@ -74408,7 +72738,7 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(1496), 8,
+ ACTIONS(2405), 8,
anon_sym_STAR,
anon_sym_LBRACK,
anon_sym_DQUOTE,
@@ -74417,26 +72747,26 @@ static const uint16_t ts_small_parse_table[] = {
sym_private_property_identifier,
anon_sym_AT,
aux_sym_method_definition_token1,
- [43595] = 8,
- ACTIONS(861), 1,
+ [43081] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2431), 2,
+ ACTIONS(2407), 2,
sym_number,
sym_private_property_identifier,
- STATE(1530), 3,
+ STATE(1465), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74444,107 +72774,48 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43630] = 8,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
+ [43116] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2433), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(2409), 8,
anon_sym_export,
anon_sym_let,
+ anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43665] = 8,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(2411), 8,
+ anon_sym_STAR,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2435), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1540), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [43700] = 8,
- ACTIONS(861), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2437), 2,
sym_number,
sym_private_property_identifier,
- STATE(1541), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [43735] = 8,
- ACTIONS(861), 1,
+ anon_sym_AT,
+ aux_sym_method_definition_token1,
+ [43141] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
+ ACTIONS(2109), 1,
anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2439), 2,
+ ACTIONS(2413), 2,
sym_number,
sym_private_property_identifier,
- STATE(1547), 3,
+ STATE(1502), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74552,26 +72823,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43770] = 8,
- ACTIONS(861), 1,
+ [43176] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2441), 2,
+ ACTIONS(2277), 2,
sym_number,
sym_private_property_identifier,
- STATE(1548), 3,
+ STATE(1610), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74579,26 +72848,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43805] = 8,
- ACTIONS(861), 1,
+ [43208] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2443), 2,
+ ACTIONS(2415), 2,
sym_number,
sym_private_property_identifier,
- STATE(1550), 3,
+ STATE(1515), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74606,75 +72873,49 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43840] = 8,
- ACTIONS(861), 1,
+ [43240] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2445), 2,
+ ACTIONS(2417), 2,
sym_number,
sym_private_property_identifier,
- STATE(1551), 3,
+ STATE(1485), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [43875] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1399), 8,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
- anon_sym_class,
anon_sym_async,
sym_identifier,
anon_sym_static,
anon_sym_get,
anon_sym_set,
- ACTIONS(1401), 8,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- aux_sym_method_definition_token1,
- [43900] = 8,
- ACTIONS(861), 1,
+ [43272] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2447), 2,
+ ACTIONS(2419), 2,
sym_number,
sym_private_property_identifier,
- STATE(1594), 3,
+ STATE(1463), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74682,24 +72923,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43935] = 7,
- ACTIONS(861), 1,
+ [43304] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(867), 2,
+ ACTIONS(2421), 2,
sym_number,
sym_private_property_identifier,
- STATE(1488), 3,
+ STATE(1518), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74707,24 +72948,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43967] = 7,
- ACTIONS(861), 1,
+ [43336] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2449), 2,
+ ACTIONS(2423), 2,
sym_number,
sym_private_property_identifier,
- STATE(1592), 3,
+ STATE(1530), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74732,24 +72973,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [43999] = 7,
- ACTIONS(861), 1,
+ [43368] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2323), 2,
+ ACTIONS(2375), 2,
sym_number,
sym_private_property_identifier,
- STATE(1567), 3,
+ STATE(1499), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74757,11 +72998,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44031] = 2,
+ [43400] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2451), 15,
+ ACTIONS(2425), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -74777,49 +73018,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- [44053] = 7,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2453), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1428), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [44085] = 7,
- ACTIONS(861), 1,
+ [43422] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2455), 2,
+ ACTIONS(2427), 2,
sym_number,
sym_private_property_identifier,
- STATE(1404), 3,
+ STATE(1552), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74827,24 +73043,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44117] = 7,
- ACTIONS(861), 1,
+ [43454] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2457), 2,
+ ACTIONS(2429), 2,
sym_number,
sym_private_property_identifier,
- STATE(1457), 3,
+ STATE(1500), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74852,31 +73068,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44149] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2459), 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,
- [44171] = 2,
+ [43486] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2461), 15,
+ ACTIONS(2431), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -74892,11 +73088,11 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- [44193] = 2,
+ [43508] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2463), 15,
+ ACTIONS(2433), 15,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
@@ -74912,49 +73108,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_AMP_AMP_EQ,
anon_sym_PIPE_PIPE_EQ,
anon_sym_QMARK_QMARK_EQ,
- [44215] = 7,
- ACTIONS(861), 1,
+ [43530] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2201), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1492), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [44247] = 7,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2231), 2,
+ ACTIONS(2169), 2,
sym_number,
sym_private_property_identifier,
- STATE(1516), 3,
+ STATE(1458), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74962,24 +73133,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44279] = 7,
- ACTIONS(861), 1,
+ [43562] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2465), 2,
+ ACTIONS(2435), 2,
sym_number,
sym_private_property_identifier,
- STATE(1517), 3,
+ STATE(1503), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -74987,24 +73158,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44311] = 7,
- ACTIONS(861), 1,
+ [43594] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2379), 2,
+ ACTIONS(2437), 2,
sym_number,
sym_private_property_identifier,
- STATE(1401), 3,
+ STATE(1507), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -75012,49 +73183,44 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44343] = 7,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
+ [43626] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2431), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1530), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [44375] = 7,
- ACTIONS(861), 1,
+ ACTIONS(2439), 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,
+ [43648] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2467), 2,
+ ACTIONS(2441), 2,
sym_number,
sym_private_property_identifier,
- STATE(1531), 3,
+ STATE(1416), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -75062,24 +73228,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44407] = 7,
- ACTIONS(861), 1,
+ [43680] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2469), 2,
+ ACTIONS(2443), 2,
sym_number,
sym_private_property_identifier,
- STATE(1571), 3,
+ STATE(1380), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -75087,24 +73253,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44439] = 7,
- ACTIONS(861), 1,
+ [43712] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2471), 2,
+ ACTIONS(860), 2,
sym_number,
sym_private_property_identifier,
- STATE(1534), 3,
+ STATE(1412), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -75112,24 +73278,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44471] = 7,
- ACTIONS(861), 1,
+ [43744] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2473), 2,
+ ACTIONS(2157), 2,
sym_number,
sym_private_property_identifier,
- STATE(1538), 3,
+ STATE(1484), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -75137,24 +73303,24 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44503] = 7,
- ACTIONS(861), 1,
+ [43776] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2475), 2,
+ ACTIONS(2445), 2,
sym_number,
sym_private_property_identifier,
- STATE(1546), 3,
+ STATE(1583), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -75162,49 +73328,44 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44535] = 7,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2099), 1,
- anon_sym_LBRACK,
+ [43808] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2477), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(1549), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(879), 7,
- anon_sym_export,
- anon_sym_let,
- anon_sym_async,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- [44567] = 7,
- ACTIONS(861), 1,
+ ACTIONS(2447), 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,
+ [43830] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2099), 1,
+ ACTIONS(1991), 1,
anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2479), 2,
+ ACTIONS(2363), 2,
sym_number,
sym_private_property_identifier,
- STATE(1421), 3,
+ STATE(1571), 3,
sym_string,
sym__property_name,
sym_computed_property_name,
- ACTIONS(879), 7,
+ ACTIONS(872), 7,
anon_sym_export,
anon_sym_let,
anon_sym_async,
@@ -75212,1221 +73373,1267 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_static,
anon_sym_get,
anon_sym_set,
- [44599] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2481), 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,
- [44621] = 11,
- ACTIONS(2016), 1,
+ [43862] = 11,
+ ACTIONS(2011), 1,
anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(2013), 1,
anon_sym_SQUOTE,
- ACTIONS(2483), 1,
+ ACTIONS(2449), 1,
sym_identifier,
- ACTIONS(2485), 1,
+ ACTIONS(2451), 1,
anon_sym_STAR,
- ACTIONS(2487), 1,
+ ACTIONS(2453), 1,
anon_sym_LBRACE,
- ACTIONS(2491), 1,
+ ACTIONS(2457), 1,
anon_sym_DOT,
- STATE(1280), 1,
+ STATE(1223), 1,
sym_string,
- STATE(1583), 1,
+ STATE(1446), 1,
sym_import_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2489), 2,
+ ACTIONS(2455), 2,
anon_sym_LPAREN,
sym_optional_chain,
- STATE(1665), 2,
+ STATE(1713), 2,
sym_namespace_import,
sym_named_imports,
- [44658] = 11,
- ACTIONS(2493), 1,
- sym_identifier,
- ACTIONS(2495), 1,
- anon_sym_LBRACE,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(2499), 1,
- anon_sym_GT,
- ACTIONS(2501), 1,
- sym_jsx_identifier,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(2505), 1,
- anon_sym_SLASH_GT,
- STATE(1073), 1,
- aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1192), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [44694] = 11,
- ACTIONS(2493), 1,
- sym_identifier,
- ACTIONS(2495), 1,
- anon_sym_LBRACE,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(2499), 1,
- anon_sym_GT,
- ACTIONS(2501), 1,
- sym_jsx_identifier,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(2507), 1,
- anon_sym_SLASH_GT,
- STATE(1078), 1,
- aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1192), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [44730] = 8,
- ACTIONS(2509), 1,
+ [43899] = 8,
+ ACTIONS(2459), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
+ ACTIONS(2463), 1,
anon_sym_LT,
- ACTIONS(2515), 1,
+ ACTIONS(2465), 1,
anon_sym_LT_SLASH,
- STATE(1052), 1,
- sym_jsx_opening_element,
- STATE(1193), 1,
+ STATE(547), 1,
sym_jsx_closing_element,
+ STATE(1033), 1,
+ sym_jsx_opening_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2511), 2,
+ ACTIONS(2461), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1057), 4,
+ STATE(1045), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [44760] = 8,
- ACTIONS(2509), 1,
+ [43929] = 8,
+ ACTIONS(2459), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
+ ACTIONS(2463), 1,
anon_sym_LT,
- ACTIONS(2519), 1,
+ ACTIONS(2469), 1,
anon_sym_LT_SLASH,
- STATE(1052), 1,
+ STATE(1033), 1,
sym_jsx_opening_element,
- STATE(1183), 1,
+ STATE(1172), 1,
sym_jsx_closing_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2517), 2,
+ ACTIONS(2467), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1056), 4,
+ STATE(1035), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [44790] = 8,
- ACTIONS(2509), 1,
+ [43959] = 11,
+ ACTIONS(2471), 1,
+ sym_identifier,
+ ACTIONS(2473), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2477), 1,
+ anon_sym_GT,
+ ACTIONS(2479), 1,
+ sym_jsx_identifier,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(2483), 1,
+ anon_sym_SLASH_GT,
+ STATE(1054), 1,
+ aux_sym_jsx_opening_element_repeat1,
+ STATE(1119), 1,
+ sym_jsx_namespace_name,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1168), 2,
+ sym_jsx_expression,
+ sym_jsx_attribute,
+ [43995] = 8,
+ ACTIONS(2459), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
+ ACTIONS(2463), 1,
anon_sym_LT,
- ACTIONS(2523), 1,
+ ACTIONS(2469), 1,
anon_sym_LT_SLASH,
- STATE(570), 1,
- sym_jsx_closing_element,
- STATE(1052), 1,
+ STATE(1033), 1,
sym_jsx_opening_element,
+ STATE(1134), 1,
+ sym_jsx_closing_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2521), 2,
+ ACTIONS(2461), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1058), 4,
+ STATE(1045), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [44820] = 11,
- ACTIONS(2493), 1,
+ [44025] = 11,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2497), 1,
+ ACTIONS(2475), 1,
anon_sym_COLON,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2503), 1,
+ ACTIONS(2481), 1,
anon_sym_DOT,
- ACTIONS(2525), 1,
+ ACTIONS(2485), 1,
anon_sym_SLASH_GT,
- STATE(1070), 1,
+ STATE(1066), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [44856] = 8,
- ACTIONS(2509), 1,
+ [44061] = 8,
+ ACTIONS(2459), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
+ ACTIONS(2463), 1,
anon_sym_LT,
- ACTIONS(2529), 1,
+ ACTIONS(2465), 1,
anon_sym_LT_SLASH,
- STATE(664), 1,
+ STATE(531), 1,
sym_jsx_closing_element,
- STATE(1052), 1,
+ STATE(1033), 1,
sym_jsx_opening_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2527), 2,
+ ACTIONS(2487), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1062), 4,
+ STATE(1032), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [44886] = 8,
- ACTIONS(2509), 1,
+ [44091] = 8,
+ ACTIONS(2459), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
+ ACTIONS(2463), 1,
anon_sym_LT,
- ACTIONS(2519), 1,
+ ACTIONS(2489), 1,
anon_sym_LT_SLASH,
- STATE(1052), 1,
- sym_jsx_opening_element,
- STATE(1179), 1,
+ STATE(726), 1,
sym_jsx_closing_element,
+ STATE(1033), 1,
+ sym_jsx_opening_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2527), 2,
+ ACTIONS(2461), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1062), 4,
+ STATE(1045), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [44916] = 8,
- ACTIONS(2509), 1,
+ [44121] = 8,
+ ACTIONS(2459), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
+ ACTIONS(2463), 1,
anon_sym_LT,
- ACTIONS(2515), 1,
+ ACTIONS(2493), 1,
anon_sym_LT_SLASH,
- STATE(1052), 1,
+ STATE(1033), 1,
sym_jsx_opening_element,
- STATE(1201), 1,
+ STATE(1162), 1,
sym_jsx_closing_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2527), 2,
+ ACTIONS(2491), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1062), 4,
+ STATE(1041), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [44946] = 8,
- ACTIONS(2509), 1,
+ [44151] = 11,
+ ACTIONS(2471), 1,
+ sym_identifier,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
- anon_sym_LT,
- ACTIONS(2523), 1,
- anon_sym_LT_SLASH,
- STATE(571), 1,
- sym_jsx_closing_element,
- STATE(1052), 1,
- sym_jsx_opening_element,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2477), 1,
+ anon_sym_GT,
+ ACTIONS(2479), 1,
+ sym_jsx_identifier,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(2495), 1,
+ anon_sym_SLASH_GT,
+ STATE(1072), 1,
+ aux_sym_jsx_opening_element_repeat1,
+ STATE(1119), 1,
+ sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2527), 2,
- sym_jsx_text,
- sym_html_character_reference,
- STATE(1062), 4,
- sym_jsx_element,
+ STATE(1168), 2,
sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [44976] = 8,
- ACTIONS(2509), 1,
+ sym_jsx_attribute,
+ [44187] = 8,
+ ACTIONS(2459), 1,
anon_sym_LBRACE,
- ACTIONS(2513), 1,
+ ACTIONS(2463), 1,
anon_sym_LT,
- ACTIONS(2529), 1,
+ ACTIONS(2493), 1,
anon_sym_LT_SLASH,
- STATE(646), 1,
- sym_jsx_closing_element,
- STATE(1052), 1,
+ STATE(1033), 1,
sym_jsx_opening_element,
+ STATE(1178), 1,
+ sym_jsx_closing_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2531), 2,
+ ACTIONS(2461), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1055), 4,
+ STATE(1045), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [45006] = 11,
- ACTIONS(2493), 1,
+ [44217] = 11,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2497), 1,
+ ACTIONS(2475), 1,
anon_sym_COLON,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2503), 1,
+ ACTIONS(2481), 1,
anon_sym_DOT,
- ACTIONS(2533), 1,
+ ACTIONS(2497), 1,
anon_sym_SLASH_GT,
- STATE(1089), 1,
+ STATE(1055), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45042] = 10,
- ACTIONS(2493), 1,
+ [44253] = 8,
+ ACTIONS(2459), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2463), 1,
+ anon_sym_LT,
+ ACTIONS(2489), 1,
+ anon_sym_LT_SLASH,
+ STATE(678), 1,
+ sym_jsx_closing_element,
+ STATE(1033), 1,
+ sym_jsx_opening_element,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2499), 2,
+ sym_jsx_text,
+ sym_html_character_reference,
+ STATE(1038), 4,
+ sym_jsx_element,
+ sym_jsx_expression,
+ sym_jsx_self_closing_element,
+ aux_sym_jsx_element_repeat1,
+ [44283] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2507), 1,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(2497), 1,
anon_sym_SLASH_GT,
- STATE(1076), 1,
+ STATE(1061), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45075] = 7,
- ACTIONS(2535), 1,
+ [44316] = 7,
+ ACTIONS(2501), 1,
anon_sym_LBRACE,
- ACTIONS(2541), 1,
+ ACTIONS(2507), 1,
anon_sym_LT,
- ACTIONS(2544), 1,
+ ACTIONS(2510), 1,
anon_sym_LT_SLASH,
- STATE(1052), 1,
+ STATE(1033), 1,
sym_jsx_opening_element,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2538), 2,
+ ACTIONS(2504), 2,
sym_jsx_text,
sym_html_character_reference,
- STATE(1062), 4,
+ STATE(1045), 4,
sym_jsx_element,
sym_jsx_expression,
sym_jsx_self_closing_element,
aux_sym_jsx_element_repeat1,
- [45102] = 10,
- ACTIONS(2493), 1,
+ [44343] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2503), 1,
+ ACTIONS(2481), 1,
anon_sym_DOT,
- ACTIONS(2533), 1,
+ ACTIONS(2483), 1,
anon_sym_SLASH_GT,
- STATE(1090), 1,
+ STATE(1064), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45135] = 10,
- ACTIONS(2493), 1,
+ [44376] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2497), 1,
+ ACTIONS(2475), 1,
anon_sym_COLON,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2505), 1,
+ ACTIONS(2497), 1,
anon_sym_SLASH_GT,
- STATE(1072), 1,
+ STATE(1058), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45168] = 10,
- ACTIONS(2493), 1,
+ [44409] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2497), 1,
+ ACTIONS(2475), 1,
anon_sym_COLON,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2525), 1,
+ ACTIONS(2483), 1,
anon_sym_SLASH_GT,
- STATE(1081), 1,
+ STATE(1059), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45201] = 10,
- ACTIONS(2493), 1,
+ [44442] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2503), 1,
+ ACTIONS(2481), 1,
anon_sym_DOT,
- ACTIONS(2505), 1,
+ ACTIONS(2485), 1,
anon_sym_SLASH_GT,
- STATE(1074), 1,
+ STATE(1067), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45234] = 10,
- ACTIONS(2493), 1,
+ [44475] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2497), 1,
+ ACTIONS(2475), 1,
anon_sym_COLON,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2533), 1,
+ ACTIONS(2495), 1,
anon_sym_SLASH_GT,
- STATE(1087), 1,
+ STATE(1071), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45267] = 10,
- ACTIONS(2493), 1,
+ [44508] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2503), 1,
+ ACTIONS(2481), 1,
anon_sym_DOT,
- ACTIONS(2525), 1,
+ ACTIONS(2495), 1,
anon_sym_SLASH_GT,
- STATE(1082), 1,
+ STATE(1068), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45300] = 10,
- ACTIONS(2493), 1,
+ [44541] = 10,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(2507), 1,
+ ACTIONS(2485), 1,
anon_sym_SLASH_GT,
- STATE(1077), 1,
+ STATE(1069), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45333] = 9,
- ACTIONS(2493), 1,
+ [44574] = 7,
+ ACTIONS(2473), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2512), 1,
+ anon_sym_LT,
+ ACTIONS(2514), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(2516), 1,
+ anon_sym_SQUOTE,
+ STATE(1039), 1,
+ sym_jsx_opening_element,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1192), 4,
+ sym_jsx_element,
+ sym_jsx_expression,
+ sym_jsx_self_closing_element,
+ sym__jsx_string,
+ [44600] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2546), 1,
+ ACTIONS(2518), 1,
anon_sym_GT,
- ACTIONS(2548), 1,
+ ACTIONS(2520), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45363] = 9,
- ACTIONS(2493), 1,
+ [44630] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
- anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2505), 1,
+ ACTIONS(2518), 1,
+ anon_sym_GT,
+ ACTIONS(2522), 1,
anon_sym_SLASH_GT,
- STATE(1075), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45393] = 9,
- ACTIONS(2493), 1,
+ [44660] = 7,
+ ACTIONS(2473), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2512), 1,
+ anon_sym_LT,
+ ACTIONS(2514), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(2516), 1,
+ anon_sym_SQUOTE,
+ STATE(1039), 1,
+ sym_jsx_opening_element,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1193), 4,
+ sym_jsx_element,
+ sym_jsx_expression,
+ sym_jsx_self_closing_element,
+ sym__jsx_string,
+ [44686] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
- sym_jsx_identifier,
- ACTIONS(2550), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2552), 1,
+ ACTIONS(2479), 1,
+ sym_jsx_identifier,
+ ACTIONS(2483), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1063), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45423] = 9,
- ACTIONS(2493), 1,
+ [44716] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2546), 1,
+ ACTIONS(2524), 1,
anon_sym_GT,
- ACTIONS(2554), 1,
+ ACTIONS(2526), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45453] = 9,
- ACTIONS(2493), 1,
+ [44746] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2556), 1,
+ ACTIONS(2524), 1,
anon_sym_GT,
- ACTIONS(2558), 1,
+ ACTIONS(2528), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45483] = 9,
- ACTIONS(2493), 1,
+ [44776] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
- sym_jsx_identifier,
- ACTIONS(2560), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2562), 1,
+ ACTIONS(2479), 1,
+ sym_jsx_identifier,
+ ACTIONS(2485), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1074), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45513] = 9,
- ACTIONS(2493), 1,
+ [44806] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2550), 1,
+ ACTIONS(2530), 1,
anon_sym_GT,
- ACTIONS(2564), 1,
+ ACTIONS(2532), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45543] = 9,
- ACTIONS(2493), 1,
+ [44836] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2556), 1,
+ ACTIONS(2534), 1,
anon_sym_GT,
- ACTIONS(2566), 1,
+ ACTIONS(2536), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45573] = 9,
- ACTIONS(2493), 1,
+ [44866] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2546), 1,
+ ACTIONS(2534), 1,
anon_sym_GT,
- ACTIONS(2568), 1,
+ ACTIONS(2538), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45603] = 9,
- ACTIONS(2493), 1,
+ [44896] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2560), 1,
+ ACTIONS(2530), 1,
anon_sym_GT,
- ACTIONS(2570), 1,
+ ACTIONS(2540), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45633] = 9,
- ACTIONS(2493), 1,
+ [44926] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2525), 1,
+ ACTIONS(2495), 1,
anon_sym_SLASH_GT,
- STATE(1083), 1,
+ STATE(1073), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45663] = 9,
- ACTIONS(2493), 1,
+ [44956] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2550), 1,
+ ACTIONS(2518), 1,
anon_sym_GT,
- ACTIONS(2572), 1,
+ ACTIONS(2542), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45693] = 9,
- ACTIONS(2493), 1,
+ [44986] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2556), 1,
+ ACTIONS(2530), 1,
anon_sym_GT,
- ACTIONS(2574), 1,
+ ACTIONS(2544), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45723] = 9,
- ACTIONS(2493), 1,
+ [45016] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2560), 1,
+ ACTIONS(2530), 1,
anon_sym_GT,
- ACTIONS(2576), 1,
+ ACTIONS(2546), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45753] = 7,
- ACTIONS(2495), 1,
- anon_sym_LBRACE,
- ACTIONS(2578), 1,
- anon_sym_LT,
- ACTIONS(2580), 1,
- anon_sym_DQUOTE,
- ACTIONS(2582), 1,
- anon_sym_SQUOTE,
- STATE(1051), 1,
- sym_jsx_opening_element,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1171), 4,
- sym_jsx_element,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- sym__jsx_string,
- [45779] = 7,
- ACTIONS(2495), 1,
- anon_sym_LBRACE,
- ACTIONS(2578), 1,
- anon_sym_LT,
- ACTIONS(2580), 1,
- anon_sym_DQUOTE,
- ACTIONS(2582), 1,
- anon_sym_SQUOTE,
- STATE(1051), 1,
- sym_jsx_opening_element,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1172), 4,
- sym_jsx_element,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- sym__jsx_string,
- [45805] = 8,
- ACTIONS(2584), 1,
+ [45046] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2587), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2592), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- STATE(1086), 1,
+ ACTIONS(2524), 1,
+ anon_sym_GT,
+ ACTIONS(2548), 1,
+ anon_sym_SLASH_GT,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2590), 2,
- anon_sym_GT,
- anon_sym_SLASH_GT,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45833] = 9,
- ACTIONS(2493), 1,
+ [45076] = 8,
+ ACTIONS(2550), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2553), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2558), 1,
sym_jsx_identifier,
- ACTIONS(2550), 1,
- anon_sym_GT,
- ACTIONS(2595), 1,
- anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ ACTIONS(2556), 2,
+ anon_sym_GT,
+ anon_sym_SLASH_GT,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45863] = 9,
- ACTIONS(2493), 1,
+ [45104] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
- anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2507), 1,
+ ACTIONS(2524), 1,
+ anon_sym_GT,
+ ACTIONS(2561), 1,
anon_sym_SLASH_GT,
- STATE(1079), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45893] = 9,
- ACTIONS(2493), 1,
+ [45134] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2546), 1,
+ ACTIONS(2518), 1,
anon_sym_GT,
- ACTIONS(2597), 1,
+ ACTIONS(2563), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45923] = 9,
- ACTIONS(2493), 1,
+ [45164] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2556), 1,
+ ACTIONS(2534), 1,
anon_sym_GT,
- ACTIONS(2599), 1,
+ ACTIONS(2565), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45953] = 9,
- ACTIONS(2493), 1,
+ [45194] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2560), 1,
+ ACTIONS(2534), 1,
anon_sym_GT,
- ACTIONS(2601), 1,
+ ACTIONS(2567), 1,
anon_sym_SLASH_GT,
- STATE(1086), 1,
+ STATE(1070), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [45983] = 9,
- ACTIONS(2493), 1,
+ [45224] = 9,
+ ACTIONS(2471), 1,
sym_identifier,
- ACTIONS(2495), 1,
+ ACTIONS(2473), 1,
anon_sym_LBRACE,
- ACTIONS(2499), 1,
+ ACTIONS(2477), 1,
anon_sym_GT,
- ACTIONS(2501), 1,
+ ACTIONS(2479), 1,
sym_jsx_identifier,
- ACTIONS(2533), 1,
+ ACTIONS(2497), 1,
anon_sym_SLASH_GT,
- STATE(1091), 1,
+ STATE(1062), 1,
aux_sym_jsx_opening_element_repeat1,
- STATE(1126), 1,
+ STATE(1119), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1192), 2,
+ STATE(1168), 2,
sym_jsx_expression,
sym_jsx_attribute,
- [46013] = 8,
- ACTIONS(861), 1,
+ [45254] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2603), 1,
+ ACTIONS(2569), 1,
sym_identifier,
- ACTIONS(2605), 1,
+ ACTIONS(2571), 1,
anon_sym_COMMA,
- ACTIONS(2607), 1,
+ ACTIONS(2573), 1,
anon_sym_RBRACE,
- STATE(1341), 1,
- sym_import_specifier,
+ STATE(1295), 1,
+ sym_export_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1680), 2,
+ STATE(1300), 2,
sym__module_export_name,
sym_string,
- [46040] = 8,
- ACTIONS(861), 1,
+ [45281] = 8,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2609), 1,
+ ACTIONS(2575), 1,
sym_identifier,
- ACTIONS(2611), 1,
+ ACTIONS(2577), 1,
anon_sym_COMMA,
- ACTIONS(2613), 1,
+ ACTIONS(2579), 1,
anon_sym_RBRACE,
- STATE(1323), 1,
- sym_export_specifier,
+ STATE(1299), 1,
+ sym_import_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1345), 2,
+ STATE(1628), 2,
sym__module_export_name,
sym_string,
- [46067] = 4,
- ACTIONS(2615), 1,
+ [45308] = 4,
+ ACTIONS(2581), 1,
anon_sym_COMMA,
- STATE(1095), 1,
+ STATE(1078), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1625), 5,
+ ACTIONS(1602), 5,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_RBRACK,
- [46085] = 2,
+ [45326] = 6,
+ ACTIONS(897), 1,
+ anon_sym_LBRACE,
+ ACTIONS(899), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2584), 1,
+ sym_identifier,
+ STATE(1308), 1,
+ sym_variable_declarator,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1191), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [45348] = 6,
+ ACTIONS(897), 1,
+ anon_sym_LBRACE,
+ ACTIONS(899), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2586), 1,
+ sym_identifier,
+ STATE(1255), 1,
+ sym_variable_declarator,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1092), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [45370] = 6,
+ ACTIONS(897), 1,
+ anon_sym_LBRACE,
+ ACTIONS(899), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2588), 1,
+ sym_identifier,
+ STATE(1260), 1,
+ sym_variable_declarator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2618), 7,
+ STATE(1099), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [45392] = 7,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_in,
- anon_sym_of,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- anon_sym_RBRACK,
- [46099] = 2,
+ ACTIONS(2115), 1,
+ anon_sym_RBRACE,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2620), 7,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ [45416] = 7,
+ ACTIONS(101), 1,
anon_sym_COMMA,
+ ACTIONS(2107), 1,
anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_in,
- anon_sym_of,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- anon_sym_RBRACK,
- [46113] = 7,
- ACTIONS(103), 1,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ [45440] = 7,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(2141), 1,
- anon_sym_EQ,
- ACTIONS(2143), 1,
+ ACTIONS(766), 1,
anon_sym_RBRACE,
- STATE(1373), 1,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ STATE(1311), 1,
aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1350), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- [46137] = 7,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2603), 1,
- sym_identifier,
- ACTIONS(2622), 1,
+ [45464] = 7,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(800), 1,
anon_sym_RBRACE,
- STATE(1473), 1,
- sym_import_specifier,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1680), 2,
- sym__module_export_name,
- sym_string,
- [46161] = 4,
- ACTIONS(1752), 1,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ [45488] = 4,
+ ACTIONS(1735), 1,
anon_sym_COMMA,
- STATE(1095), 1,
+ STATE(1078), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2624), 5,
+ ACTIONS(2590), 5,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_RBRACK,
- [46179] = 6,
- ACTIONS(934), 1,
- anon_sym_LBRACE,
- ACTIONS(936), 1,
- anon_sym_LBRACK,
- ACTIONS(2626), 1,
+ [45506] = 7,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(2575), 1,
sym_identifier,
- STATE(1349), 1,
- sym_variable_declarator,
+ ACTIONS(2592), 1,
+ anon_sym_RBRACE,
+ STATE(1491), 1,
+ sym_import_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1163), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [46201] = 7,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(2137), 1,
- anon_sym_RBRACE,
- ACTIONS(2141), 1,
- anon_sym_EQ,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
- aux_sym_object_repeat1,
+ STATE(1628), 2,
+ sym__module_export_name,
+ sym_string,
+ [45530] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [46225] = 5,
- ACTIONS(2632), 1,
+ ACTIONS(2594), 7,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_in,
+ anon_sym_of,
anon_sym_EQ,
- STATE(1186), 1,
- sym__initializer,
+ anon_sym_RBRACK,
+ [45544] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2630), 2,
+ ACTIONS(2596), 7,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
anon_sym_in,
anon_sym_of,
- ACTIONS(2628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [46245] = 7,
- ACTIONS(103), 1,
+ anon_sym_EQ,
+ anon_sym_RBRACK,
+ [45558] = 7,
+ ACTIONS(101), 1,
anon_sym_COMMA,
- ACTIONS(845), 1,
+ ACTIONS(792), 1,
anon_sym_RBRACE,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
+ STATE(1310), 1,
aux_sym_object_repeat1,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 2,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
anon_sym_COLON,
- [46269] = 7,
- ACTIONS(861), 1,
+ [45582] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2609), 1,
+ ACTIONS(2569), 1,
sym_identifier,
- ACTIONS(2634), 1,
+ ACTIONS(2598), 1,
anon_sym_RBRACE,
- STATE(1576), 1,
+ STATE(1468), 1,
sym_export_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1345), 2,
+ STATE(1300), 2,
sym__module_export_name,
sym_string,
- [46293] = 2,
+ [45606] = 5,
+ ACTIONS(2604), 1,
+ anon_sym_EQ,
+ STATE(1194), 1,
+ sym__initializer,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2602), 2,
+ anon_sym_in,
+ anon_sym_of,
+ ACTIONS(2600), 3,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ [45626] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2636), 7,
+ ACTIONS(2606), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
@@ -76434,60 +74641,108 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_of,
anon_sym_EQ,
anon_sym_RBRACK,
- [46307] = 6,
- ACTIONS(934), 1,
+ [45640] = 5,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2608), 1,
+ sym_identifier,
+ ACTIONS(2612), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2610), 4,
+ anon_sym_LBRACE,
+ anon_sym_GT,
+ sym_jsx_identifier,
+ anon_sym_SLASH_GT,
+ [45660] = 6,
+ ACTIONS(897), 1,
anon_sym_LBRACE,
- ACTIONS(936), 1,
+ ACTIONS(899), 1,
anon_sym_LBRACK,
- ACTIONS(2626), 1,
+ ACTIONS(2584), 1,
sym_identifier,
- STATE(1219), 1,
+ STATE(1255), 1,
sym_variable_declarator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1163), 3,
+ STATE(1191), 3,
sym_object_pattern,
sym_array_pattern,
sym__destructuring_pattern,
- [46329] = 7,
- ACTIONS(861), 1,
+ [45682] = 7,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2609), 1,
+ ACTIONS(2569), 1,
sym_identifier,
- ACTIONS(2638), 1,
+ ACTIONS(2614), 1,
anon_sym_RBRACE,
- STATE(1576), 1,
+ STATE(1468), 1,
sym_export_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1345), 2,
+ STATE(1300), 2,
+ sym__module_export_name,
+ sym_string,
+ [45706] = 7,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(2575), 1,
+ sym_identifier,
+ ACTIONS(2616), 1,
+ anon_sym_RBRACE,
+ STATE(1491), 1,
+ sym_import_specifier,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1628), 2,
sym__module_export_name,
sym_string,
- [46353] = 6,
- ACTIONS(2640), 1,
+ [45730] = 6,
+ ACTIONS(897), 1,
+ anon_sym_LBRACE,
+ ACTIONS(899), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2584), 1,
+ sym_identifier,
+ STATE(1260), 1,
+ sym_variable_declarator,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1191), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [45752] = 6,
+ ACTIONS(2618), 1,
anon_sym_EQ,
- ACTIONS(2642), 1,
+ ACTIONS(2620), 1,
sym__automatic_semicolon,
- STATE(1353), 1,
+ STATE(1318), 1,
sym__initializer,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2628), 2,
+ ACTIONS(2600), 2,
anon_sym_COMMA,
anon_sym_SEMI,
- ACTIONS(2630), 2,
+ ACTIONS(2602), 2,
anon_sym_in,
anon_sym_of,
- [46375] = 2,
+ [45774] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2645), 7,
+ ACTIONS(2623), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
@@ -76495,11 +74750,28 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_of,
anon_sym_EQ,
anon_sym_RBRACK,
- [46389] = 2,
+ [45788] = 7,
+ ACTIONS(101), 1,
+ anon_sym_COMMA,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ ACTIONS(2113), 1,
+ anon_sym_RBRACE,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
+ STATE(1350), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ [45812] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2647), 7,
+ ACTIONS(2625), 7,
anon_sym_COMMA,
anon_sym_RBRACE,
anon_sym_RPAREN,
@@ -76507,7202 +74779,6974 @@ static const uint16_t ts_small_parse_table[] = {
anon_sym_of,
anon_sym_EQ,
anon_sym_RBRACK,
- [46403] = 6,
- ACTIONS(934), 1,
+ [45826] = 5,
+ ACTIONS(897), 1,
anon_sym_LBRACE,
- ACTIONS(936), 1,
+ ACTIONS(899), 1,
anon_sym_LBRACK,
- ACTIONS(2649), 1,
+ ACTIONS(2627), 1,
sym_identifier,
- STATE(1219), 1,
- sym_variable_declarator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1103), 3,
+ STATE(1313), 3,
sym_object_pattern,
sym_array_pattern,
sym__destructuring_pattern,
- [46425] = 6,
- ACTIONS(934), 1,
- anon_sym_LBRACE,
- ACTIONS(936), 1,
- anon_sym_LBRACK,
- ACTIONS(2651), 1,
+ [45845] = 5,
+ ACTIONS(2629), 1,
+ anon_sym_default,
+ ACTIONS(2631), 1,
+ anon_sym_RBRACE,
+ ACTIONS(2633), 1,
+ anon_sym_case,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1108), 3,
+ sym_switch_case,
+ sym_switch_default,
+ aux_sym_switch_body_repeat1,
+ [45864] = 3,
+ ACTIONS(2635), 1,
sym_identifier,
- STATE(1221), 1,
- sym_variable_declarator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1109), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [46447] = 7,
- ACTIONS(861), 1,
+ ACTIONS(2637), 5,
+ anon_sym_LBRACE,
+ anon_sym_GT,
+ sym_jsx_identifier,
+ anon_sym_DOT,
+ anon_sym_SLASH_GT,
+ [45879] = 5,
+ ACTIONS(2641), 1,
+ anon_sym_BQUOTE,
+ ACTIONS(2643), 1,
+ anon_sym_DOLLAR_LBRACE,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2639), 2,
+ sym__template_chars,
+ sym_escape_sequence,
+ STATE(1123), 2,
+ sym_template_substitution,
+ aux_sym_template_string_repeat1,
+ [45898] = 6,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2603), 1,
+ ACTIONS(2575), 1,
sym_identifier,
- ACTIONS(2653), 1,
- anon_sym_RBRACE,
- STATE(1473), 1,
+ STATE(1491), 1,
sym_import_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1680), 2,
+ STATE(1628), 2,
sym__module_export_name,
sym_string,
- [46471] = 7,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(817), 1,
+ [45919] = 5,
+ ACTIONS(2629), 1,
+ anon_sym_default,
+ ACTIONS(2633), 1,
+ anon_sym_case,
+ ACTIONS(2645), 1,
anon_sym_RBRACE,
- ACTIONS(2141), 1,
- anon_sym_EQ,
- STATE(1372), 1,
- aux_sym_object_repeat1,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 2,
+ STATE(1131), 3,
+ sym_switch_case,
+ sym_switch_default,
+ aux_sym_switch_body_repeat1,
+ [45938] = 6,
+ ACTIONS(2618), 1,
+ anon_sym_EQ,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- anon_sym_COLON,
- [46495] = 7,
- ACTIONS(103), 1,
+ STATE(1451), 1,
+ sym__initializer,
+ STATE(1601), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2649), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [45959] = 2,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1648), 6,
+ sym__automatic_semicolon,
anon_sym_COMMA,
- ACTIONS(2141), 1,
+ anon_sym_SEMI,
+ anon_sym_in,
+ anon_sym_of,
anon_sym_EQ,
- ACTIONS(2145), 1,
- anon_sym_RBRACE,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
- aux_sym_object_repeat1,
+ [45972] = 6,
+ ACTIONS(2618), 1,
+ anon_sym_EQ,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1447), 1,
+ sym__initializer,
+ STATE(1586), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [46519] = 5,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(2655), 1,
- sym_identifier,
- ACTIONS(2659), 1,
- anon_sym_EQ,
+ ACTIONS(2651), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [45993] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2657), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [46539] = 6,
- ACTIONS(934), 1,
+ ACTIONS(1534), 6,
+ anon_sym_as,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_from,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ [46006] = 5,
+ ACTIONS(1885), 1,
anon_sym_LBRACE,
- ACTIONS(936), 1,
- anon_sym_LBRACK,
- ACTIONS(2626), 1,
+ ACTIONS(2653), 1,
sym_identifier,
- STATE(1221), 1,
- sym_variable_declarator,
+ ACTIONS(2655), 1,
+ anon_sym_LBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1163), 3,
+ STATE(1251), 3,
sym_object_pattern,
sym_array_pattern,
sym__destructuring_pattern,
- [46561] = 7,
- ACTIONS(103), 1,
- anon_sym_COMMA,
- ACTIONS(843), 1,
- anon_sym_RBRACE,
- ACTIONS(2141), 1,
+ [46025] = 6,
+ ACTIONS(2618), 1,
anon_sym_EQ,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
- STATE(1383), 1,
- aux_sym_object_repeat1,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1448), 1,
+ sym__initializer,
+ STATE(1587), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [46585] = 5,
- ACTIONS(2663), 1,
- anon_sym_BQUOTE,
- ACTIONS(2665), 1,
+ ACTIONS(2657), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [46046] = 5,
+ ACTIONS(2643), 1,
anon_sym_DOLLAR_LBRACE,
+ ACTIONS(2661), 1,
+ anon_sym_BQUOTE,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2661), 2,
+ ACTIONS(2659), 2,
sym__template_chars,
sym_escape_sequence,
- STATE(1140), 2,
+ STATE(1106), 2,
sym_template_substitution,
aux_sym_template_string_repeat1,
- [46604] = 5,
- ACTIONS(2667), 1,
- anon_sym_default,
- ACTIONS(2669), 1,
- anon_sym_RBRACE,
- ACTIONS(2671), 1,
- anon_sym_case,
+ [46065] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1124), 3,
- sym_switch_case,
- sym_switch_default,
- aux_sym_switch_body_repeat1,
- [46623] = 2,
+ ACTIONS(2596), 6,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ anon_sym_in,
+ anon_sym_of,
+ anon_sym_EQ,
+ [46078] = 5,
+ ACTIONS(1885), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2655), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2663), 1,
+ sym_identifier,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ STATE(1634), 3,
+ sym_object_pattern,
+ sym_array_pattern,
+ sym__destructuring_pattern,
+ [46097] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2636), 6,
+ ACTIONS(1646), 6,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_in,
anon_sym_of,
anon_sym_EQ,
- [46636] = 3,
- ACTIONS(2673), 1,
+ [46110] = 4,
+ ACTIONS(2665), 1,
sym_identifier,
+ ACTIONS(2669), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2675), 5,
+ ACTIONS(2667), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
- anon_sym_DOT,
anon_sym_SLASH_GT,
- [46651] = 5,
- ACTIONS(2677), 1,
- anon_sym_default,
- ACTIONS(2680), 1,
- anon_sym_RBRACE,
- ACTIONS(2682), 1,
- anon_sym_case,
+ [46127] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1124), 3,
- sym_switch_case,
- sym_switch_default,
- aux_sym_switch_body_repeat1,
- [46670] = 6,
- ACTIONS(2640), 1,
- anon_sym_EQ,
- ACTIONS(2685), 1,
+ ACTIONS(1538), 6,
+ anon_sym_as,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_from,
anon_sym_LPAREN,
- STATE(1515), 1,
- sym__initializer,
- STATE(1556), 1,
- sym_formal_parameters,
+ anon_sym_COLON,
+ [46140] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2687), 2,
+ ACTIONS(2594), 6,
sym__automatic_semicolon,
+ anon_sym_COMMA,
anon_sym_SEMI,
- [46691] = 4,
- ACTIONS(2689), 1,
- sym_identifier,
- ACTIONS(2693), 1,
+ anon_sym_in,
+ anon_sym_of,
anon_sym_EQ,
+ [46153] = 5,
+ ACTIONS(2643), 1,
+ anon_sym_DOLLAR_LBRACE,
+ ACTIONS(2671), 1,
+ anon_sym_BQUOTE,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2639), 2,
+ sym__template_chars,
+ sym_escape_sequence,
+ STATE(1123), 2,
+ sym_template_substitution,
+ aux_sym_template_string_repeat1,
+ [46172] = 5,
+ ACTIONS(2676), 1,
+ anon_sym_BQUOTE,
+ ACTIONS(2678), 1,
+ anon_sym_DOLLAR_LBRACE,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2673), 2,
+ sym__template_chars,
+ sym_escape_sequence,
+ STATE(1123), 2,
+ sym_template_substitution,
+ aux_sym_template_string_repeat1,
+ [46191] = 3,
+ ACTIONS(2681), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2691), 4,
+ ACTIONS(2683), 5,
anon_sym_LBRACE,
+ anon_sym_EQ,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [46708] = 6,
- ACTIONS(2640), 1,
- anon_sym_EQ,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1603), 1,
- sym__initializer,
- STATE(1618), 1,
- sym_formal_parameters,
+ [46206] = 6,
+ ACTIONS(854), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(856), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(2569), 1,
+ sym_identifier,
+ STATE(1468), 1,
+ sym_export_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2695), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [46729] = 2,
+ STATE(1300), 2,
+ sym__module_export_name,
+ sym_string,
+ [46227] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1701), 6,
+ ACTIONS(1644), 6,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_in,
anon_sym_of,
anon_sym_EQ,
- [46742] = 2,
+ [46240] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1697), 6,
+ ACTIONS(2625), 6,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_in,
anon_sym_of,
anon_sym_EQ,
- [46755] = 6,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2609), 1,
- sym_identifier,
- STATE(1576), 1,
- sym_export_specifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1345), 2,
- sym__module_export_name,
- sym_string,
- [46776] = 2,
+ [46253] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2645), 6,
+ ACTIONS(2623), 6,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_in,
anon_sym_of,
anon_sym_EQ,
- [46789] = 2,
+ [46266] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2620), 6,
+ ACTIONS(2606), 6,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
anon_sym_in,
anon_sym_of,
anon_sym_EQ,
- [46802] = 6,
- ACTIONS(2640), 1,
+ [46279] = 6,
+ ACTIONS(2618), 1,
anon_sym_EQ,
- ACTIONS(2685), 1,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1526), 1,
+ STATE(1455), 1,
sym__initializer,
- STATE(1563), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2697), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [46823] = 5,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(2699), 1,
- sym_identifier,
- ACTIONS(2701), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1266), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [46842] = 5,
- ACTIONS(934), 1,
- anon_sym_LBRACE,
- ACTIONS(936), 1,
- anon_sym_LBRACK,
- ACTIONS(2703), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1339), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [46861] = 6,
- ACTIONS(2640), 1,
- anon_sym_EQ,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1472), 1,
+ STATE(1551), 1,
sym_formal_parameters,
- STATE(1485), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2705), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [46882] = 5,
- ACTIONS(1902), 1,
- anon_sym_LBRACE,
- ACTIONS(2701), 1,
- anon_sym_LBRACK,
- ACTIONS(2707), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1697), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [46901] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2618), 6,
+ ACTIONS(2685), 2,
sym__automatic_semicolon,
- anon_sym_COMMA,
anon_sym_SEMI,
- anon_sym_in,
- anon_sym_of,
- anon_sym_EQ,
- [46914] = 5,
- ACTIONS(2665), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(2711), 1,
- anon_sym_BQUOTE,
+ [46300] = 5,
+ ACTIONS(2687), 1,
+ anon_sym_default,
+ ACTIONS(2690), 1,
+ anon_sym_RBRACE,
+ ACTIONS(2692), 1,
+ anon_sym_case,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2709), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(1149), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [46933] = 5,
- ACTIONS(2665), 1,
+ STATE(1131), 3,
+ sym_switch_case,
+ sym_switch_default,
+ aux_sym_switch_body_repeat1,
+ [46319] = 5,
+ ACTIONS(2643), 1,
anon_sym_DOLLAR_LBRACE,
- ACTIONS(2713), 1,
+ ACTIONS(2697), 1,
anon_sym_BQUOTE,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2709), 2,
+ ACTIONS(2695), 2,
sym__template_chars,
sym_escape_sequence,
- STATE(1149), 2,
+ STATE(1122), 2,
sym_template_substitution,
aux_sym_template_string_repeat1,
- [46952] = 6,
- ACTIONS(861), 1,
+ [46338] = 5,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2603), 1,
+ ACTIONS(2699), 1,
sym_identifier,
- STATE(1473), 1,
- sym_import_specifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1680), 2,
+ STATE(1654), 2,
sym__module_export_name,
sym_string,
- [46973] = 5,
- ACTIONS(2667), 1,
- anon_sym_default,
- ACTIONS(2671), 1,
- anon_sym_case,
- ACTIONS(2715), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1121), 3,
- sym_switch_case,
- sym_switch_default,
- aux_sym_switch_body_repeat1,
- [46992] = 5,
- ACTIONS(2665), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(2719), 1,
- anon_sym_BQUOTE,
+ [46356] = 3,
+ ACTIONS(1460), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2717), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(1139), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [47011] = 2,
+ ACTIONS(1462), 4,
+ sym_jsx_text,
+ anon_sym_LBRACE,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46370] = 3,
+ ACTIONS(2701), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1508), 6,
- anon_sym_as,
+ ACTIONS(1302), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
- anon_sym_from,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [47024] = 3,
- ACTIONS(2721), 1,
- sym_identifier,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ [46384] = 3,
+ ACTIONS(2706), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2723), 5,
+ ACTIONS(2704), 4,
+ sym_jsx_text,
anon_sym_LBRACE,
- anon_sym_EQ,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46398] = 6,
+ ACTIONS(2708), 1,
+ sym_identifier,
+ ACTIONS(2710), 1,
anon_sym_GT,
+ ACTIONS(2712), 1,
sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [47039] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1378), 6,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_from,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [47052] = 2,
+ STATE(1044), 1,
+ sym_nested_identifier,
+ STATE(1075), 1,
+ sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1699), 6,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_in,
- anon_sym_of,
- anon_sym_EQ,
- [47065] = 2,
+ [46418] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2647), 6,
- sym__automatic_semicolon,
+ ACTIONS(1302), 5,
anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_in,
- anon_sym_of,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
anon_sym_EQ,
- [47078] = 5,
- ACTIONS(2728), 1,
- anon_sym_BQUOTE,
- ACTIONS(2730), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2725), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(1149), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [47097] = 3,
- ACTIONS(1468), 1,
- anon_sym_LT,
+ anon_sym_RBRACK,
+ [46430] = 6,
+ ACTIONS(2710), 1,
+ anon_sym_GT,
+ ACTIONS(2714), 1,
+ sym_identifier,
+ ACTIONS(2716), 1,
+ sym_jsx_identifier,
+ STATE(1051), 1,
+ sym_nested_identifier,
+ STATE(1065), 1,
+ sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1470), 4,
- sym_jsx_text,
- anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47111] = 3,
- ACTIONS(2733), 1,
+ [46450] = 3,
+ ACTIONS(2718), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2735), 4,
+ ACTIONS(2720), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47125] = 6,
- ACTIONS(2737), 1,
+ [46464] = 6,
+ ACTIONS(2722), 1,
sym_identifier,
- ACTIONS(2739), 1,
+ ACTIONS(2724), 1,
anon_sym_LBRACE,
- ACTIONS(2741), 1,
+ ACTIONS(2726), 1,
anon_sym_extends,
- STATE(728), 1,
+ STATE(526), 1,
sym_class_body,
- STATE(1529), 1,
+ STATE(1533), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47145] = 6,
- ACTIONS(93), 1,
+ [46484] = 6,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2743), 1,
+ ACTIONS(2728), 1,
anon_sym_export,
- ACTIONS(2745), 1,
+ ACTIONS(2730), 1,
anon_sym_class,
- STATE(973), 1,
+ STATE(944), 1,
aux_sym_export_statement_repeat1,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47165] = 3,
- ACTIONS(2749), 1,
- anon_sym_LT,
+ [46504] = 3,
+ ACTIONS(2732), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2747), 4,
- sym_jsx_text,
+ ACTIONS(2734), 4,
anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47179] = 6,
- ACTIONS(2751), 1,
+ anon_sym_GT,
+ sym_jsx_identifier,
+ anon_sym_SLASH_GT,
+ [46518] = 6,
+ ACTIONS(2736), 1,
sym_identifier,
- ACTIONS(2753), 1,
+ ACTIONS(2738), 1,
anon_sym_GT,
- ACTIONS(2755), 1,
+ ACTIONS(2740), 1,
sym_jsx_identifier,
- STATE(1063), 1,
+ STATE(1417), 1,
sym_nested_identifier,
- STATE(1092), 1,
+ STATE(1721), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47199] = 3,
- ACTIONS(2757), 1,
- anon_sym_EQ,
+ [46538] = 6,
+ ACTIONS(2742), 1,
+ sym_identifier,
+ ACTIONS(2744), 1,
+ anon_sym_GT,
+ ACTIONS(2746), 1,
+ sym_jsx_identifier,
+ STATE(1536), 1,
+ sym_nested_identifier,
+ STATE(1706), 1,
+ sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1309), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [47213] = 3,
- ACTIONS(2760), 1,
- sym_identifier,
+ [46558] = 3,
+ ACTIONS(1484), 1,
+ anon_sym_LT,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1486), 4,
+ sym_jsx_text,
+ anon_sym_LBRACE,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46572] = 3,
+ ACTIONS(1484), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2762), 4,
+ ACTIONS(1486), 4,
+ sym_jsx_text,
anon_sym_LBRACE,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46586] = 6,
+ ACTIONS(2710), 1,
anon_sym_GT,
+ ACTIONS(2748), 1,
+ sym_identifier,
+ ACTIONS(2750), 1,
sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [47227] = 3,
- ACTIONS(1460), 1,
+ STATE(1046), 1,
+ sym_nested_identifier,
+ STATE(1057), 1,
+ sym_jsx_namespace_name,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [46606] = 3,
+ ACTIONS(1484), 1,
anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1462), 4,
+ ACTIONS(1486), 4,
sym_jsx_text,
anon_sym_LBRACE,
sym_html_character_reference,
anon_sym_LT_SLASH,
- [47241] = 3,
- ACTIONS(2764), 1,
- anon_sym_EQ,
+ [46620] = 3,
+ ACTIONS(1484), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1318), 4,
+ ACTIONS(1486), 4,
+ sym_jsx_text,
+ anon_sym_LBRACE,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46634] = 6,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
+ ACTIONS(2109), 1,
+ anon_sym_COLON,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ ACTIONS(2752), 1,
anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [47255] = 2,
+ STATE(1352), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1309), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_EQ,
- anon_sym_RBRACK,
- [47267] = 6,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(2766), 1,
- anon_sym_export,
- ACTIONS(2768), 1,
- anon_sym_class,
- STATE(973), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
+ [46654] = 3,
+ ACTIONS(2756), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47287] = 6,
- ACTIONS(2739), 1,
+ ACTIONS(2754), 4,
+ sym_jsx_text,
anon_sym_LBRACE,
- ACTIONS(2741), 1,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46668] = 6,
+ ACTIONS(2726), 1,
anon_sym_extends,
- ACTIONS(2770), 1,
+ ACTIONS(2758), 1,
sym_identifier,
- STATE(642), 1,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ STATE(731), 1,
sym_class_body,
- STATE(1480), 1,
+ STATE(1566), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47307] = 4,
- ACTIONS(2640), 1,
- anon_sym_EQ,
- STATE(1353), 1,
- sym__initializer,
+ [46688] = 3,
+ ACTIONS(2756), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [47323] = 6,
- ACTIONS(2772), 1,
- sym_identifier,
- ACTIONS(2774), 1,
- anon_sym_GT,
- ACTIONS(2776), 1,
- sym_jsx_identifier,
- STATE(1629), 1,
- sym_nested_identifier,
- STATE(1703), 1,
- sym_jsx_namespace_name,
+ ACTIONS(2754), 4,
+ sym_jsx_text,
+ anon_sym_LBRACE,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46702] = 3,
+ ACTIONS(1516), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47343] = 2,
+ ACTIONS(1518), 4,
+ sym_jsx_text,
+ anon_sym_LBRACE,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [46716] = 6,
+ ACTIONS(2726), 1,
+ anon_sym_extends,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2762), 1,
+ sym_identifier,
+ STATE(637), 1,
+ sym_class_body,
+ STATE(1560), 1,
+ sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1378), 5,
- sym__automatic_semicolon,
- anon_sym_with,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_EQ,
- [47355] = 3,
- ACTIONS(2733), 1,
+ [46736] = 3,
+ ACTIONS(2756), 1,
anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2735), 4,
+ ACTIONS(2754), 4,
sym_jsx_text,
anon_sym_LBRACE,
sym_html_character_reference,
anon_sym_LT_SLASH,
- [47369] = 3,
- ACTIONS(2778), 1,
+ [46750] = 6,
+ ACTIONS(2726), 1,
+ anon_sym_extends,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2764), 1,
+ sym_identifier,
+ STATE(637), 1,
+ sym_class_body,
+ STATE(1560), 1,
+ sym_class_heritage,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [46770] = 3,
+ ACTIONS(2766), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1309), 4,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ [46784] = 4,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ ACTIONS(2130), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [46800] = 6,
+ ACTIONS(2726), 1,
+ anon_sym_extends,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2768), 1,
+ sym_identifier,
+ STATE(731), 1,
+ sym_class_body,
+ STATE(1566), 1,
+ sym_class_heritage,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [46820] = 3,
+ ACTIONS(1396), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2780), 4,
+ ACTIONS(1398), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47383] = 3,
- ACTIONS(2782), 1,
+ [46834] = 3,
+ ACTIONS(2706), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2784), 4,
+ ACTIONS(2704), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47397] = 6,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- ACTIONS(2741), 1,
- anon_sym_extends,
- ACTIONS(2786), 1,
+ [46848] = 6,
+ ACTIONS(2710), 1,
+ anon_sym_GT,
+ ACTIONS(2770), 1,
sym_identifier,
- STATE(642), 1,
- sym_class_body,
- STATE(1480), 1,
- sym_class_heritage,
+ ACTIONS(2772), 1,
+ sym_jsx_identifier,
+ STATE(1049), 1,
+ sym_nested_identifier,
+ STATE(1060), 1,
+ sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47417] = 3,
- ACTIONS(1372), 1,
+ [46868] = 3,
+ ACTIONS(2776), 1,
anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1374), 4,
+ ACTIONS(2774), 4,
sym_jsx_text,
anon_sym_LBRACE,
sym_html_character_reference,
anon_sym_LT_SLASH,
- [47431] = 3,
- ACTIONS(2788), 1,
+ [46882] = 6,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(2778), 1,
+ anon_sym_export,
+ ACTIONS(2780), 1,
+ anon_sym_class,
+ STATE(944), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [46902] = 2,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1534), 5,
+ sym__automatic_semicolon,
+ anon_sym_with,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ [46914] = 3,
+ ACTIONS(2782), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2790), 4,
+ ACTIONS(2784), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47445] = 3,
- ACTIONS(2792), 1,
+ [46928] = 6,
+ ACTIONS(2724), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2726), 1,
+ anon_sym_extends,
+ ACTIONS(2786), 1,
sym_identifier,
+ STATE(549), 1,
+ sym_class_body,
+ STATE(1584), 1,
+ sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2794), 4,
+ [46948] = 6,
+ ACTIONS(2726), 1,
+ anon_sym_extends,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [47459] = 3,
- ACTIONS(2782), 1,
- anon_sym_LT,
+ ACTIONS(2788), 1,
+ sym_identifier,
+ STATE(637), 1,
+ sym_class_body,
+ STATE(1560), 1,
+ sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2784), 4,
- sym_jsx_text,
- anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47473] = 5,
- ACTIONS(861), 1,
+ [46968] = 5,
+ ACTIONS(854), 1,
anon_sym_DQUOTE,
- ACTIONS(863), 1,
+ ACTIONS(856), 1,
anon_sym_SQUOTE,
- ACTIONS(2796), 1,
+ ACTIONS(2790), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1584), 2,
+ STATE(1479), 2,
sym__module_export_name,
sym_string,
- [47491] = 6,
- ACTIONS(2798), 1,
- sym_identifier,
- ACTIONS(2800), 1,
- anon_sym_GT,
- ACTIONS(2802), 1,
- sym_jsx_identifier,
- STATE(1447), 1,
- sym_nested_identifier,
- STATE(1711), 1,
- sym_jsx_namespace_name,
+ [46986] = 3,
+ ACTIONS(1396), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47511] = 6,
- ACTIONS(2804), 1,
+ ACTIONS(1398), 4,
+ sym_jsx_text,
+ anon_sym_LBRACE,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [47000] = 3,
+ ACTIONS(1425), 1,
sym_identifier,
- ACTIONS(2806), 1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1427), 4,
+ anon_sym_LBRACE,
anon_sym_GT,
- ACTIONS(2808), 1,
sym_jsx_identifier,
- STATE(1418), 1,
- sym_nested_identifier,
- STATE(1735), 1,
- sym_jsx_namespace_name,
+ anon_sym_SLASH_GT,
+ [47014] = 6,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2792), 1,
+ sym_identifier,
+ ACTIONS(2794), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2796), 1,
+ sym_private_property_identifier,
+ STATE(545), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47531] = 4,
- ACTIONS(2141), 1,
+ [47034] = 3,
+ ACTIONS(2798), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- ACTIONS(2160), 2,
+ ACTIONS(1302), 4,
anon_sym_COMMA,
anon_sym_RBRACE,
- [47547] = 6,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(2810), 1,
- sym_identifier,
- ACTIONS(2812), 1,
- anon_sym_LBRACK,
- ACTIONS(2814), 1,
- sym_private_property_identifier,
- STATE(566), 1,
- sym_arguments,
+ anon_sym_RPAREN,
+ anon_sym_RBRACK,
+ [47048] = 5,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(2133), 1,
+ anon_sym_RBRACE,
+ STATE(1296), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47567] = 3,
- ACTIONS(1526), 1,
- anon_sym_LT,
+ ACTIONS(2109), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ [47066] = 3,
+ ACTIONS(1456), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1528), 4,
- sym_jsx_text,
+ ACTIONS(1458), 4,
anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47581] = 6,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(2816), 1,
+ anon_sym_GT,
+ sym_jsx_identifier,
+ anon_sym_SLASH_GT,
+ [47080] = 3,
+ ACTIONS(1460), 1,
sym_identifier,
- ACTIONS(2818), 1,
- anon_sym_LBRACK,
- ACTIONS(2820), 1,
- sym_private_property_identifier,
- STATE(650), 1,
- sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47601] = 3,
- ACTIONS(1468), 1,
+ ACTIONS(1462), 4,
+ anon_sym_LBRACE,
+ anon_sym_GT,
+ sym_jsx_identifier,
+ anon_sym_SLASH_GT,
+ [47094] = 3,
+ ACTIONS(1425), 1,
anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1470), 4,
+ ACTIONS(1427), 4,
sym_jsx_text,
anon_sym_LBRACE,
sym_html_character_reference,
anon_sym_LT_SLASH,
- [47615] = 3,
- ACTIONS(1468), 1,
- anon_sym_LT,
+ [47108] = 3,
+ ACTIONS(1484), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1470), 4,
- sym_jsx_text,
+ ACTIONS(1486), 4,
anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47629] = 3,
- ACTIONS(1522), 1,
- anon_sym_LT,
+ anon_sym_GT,
+ sym_jsx_identifier,
+ anon_sym_SLASH_GT,
+ [47122] = 3,
+ ACTIONS(1484), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1524), 4,
- sym_jsx_text,
+ ACTIONS(1486), 4,
anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47643] = 6,
- ACTIONS(2121), 1,
- anon_sym_COMMA,
- ACTIONS(2139), 1,
- anon_sym_COLON,
- ACTIONS(2141), 1,
- anon_sym_EQ,
- ACTIONS(2822), 1,
- anon_sym_RBRACE,
- STATE(1389), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [47663] = 5,
- ACTIONS(2095), 1,
- anon_sym_COMMA,
- ACTIONS(2181), 1,
- anon_sym_RBRACE,
- STATE(1387), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [47681] = 4,
- ACTIONS(2826), 1,
- anon_sym_in,
- ACTIONS(2828), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2824), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [47697] = 6,
- ACTIONS(2830), 1,
- sym_identifier,
- ACTIONS(2832), 1,
anon_sym_GT,
- ACTIONS(2834), 1,
sym_jsx_identifier,
- STATE(1523), 1,
- sym_nested_identifier,
- STATE(1642), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [47717] = 3,
- ACTIONS(2749), 1,
- anon_sym_LT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2747), 4,
- sym_jsx_text,
- anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47731] = 6,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- ACTIONS(2741), 1,
- anon_sym_extends,
- ACTIONS(2836), 1,
+ anon_sym_SLASH_GT,
+ [47136] = 3,
+ ACTIONS(1484), 1,
sym_identifier,
- STATE(728), 1,
- sym_class_body,
- STATE(1529), 1,
- sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47751] = 3,
- ACTIONS(1424), 1,
- anon_sym_LT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1426), 4,
- sym_jsx_text,
- anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [47765] = 6,
- ACTIONS(2739), 1,
+ ACTIONS(1486), 4,
anon_sym_LBRACE,
- ACTIONS(2741), 1,
- anon_sym_extends,
- ACTIONS(2838), 1,
- sym_identifier,
- STATE(728), 1,
- sym_class_body,
- STATE(1529), 1,
- sym_class_heritage,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [47785] = 3,
- ACTIONS(2840), 1,
+ anon_sym_GT,
+ sym_jsx_identifier,
+ anon_sym_SLASH_GT,
+ [47150] = 3,
+ ACTIONS(1484), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2842), 4,
+ ACTIONS(1486), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47799] = 3,
- ACTIONS(1522), 1,
+ [47164] = 3,
+ ACTIONS(1516), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1524), 4,
+ ACTIONS(1518), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47813] = 3,
- ACTIONS(2749), 1,
+ [47178] = 6,
+ ACTIONS(2726), 1,
+ anon_sym_extends,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2801), 1,
+ sym_identifier,
+ STATE(731), 1,
+ sym_class_body,
+ STATE(1566), 1,
+ sym_class_heritage,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [47198] = 3,
+ ACTIONS(2805), 1,
anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2747), 4,
+ ACTIONS(2803), 4,
sym_jsx_text,
anon_sym_LBRACE,
sym_html_character_reference,
anon_sym_LT_SLASH,
- [47827] = 6,
- ACTIONS(2753), 1,
- anon_sym_GT,
- ACTIONS(2844), 1,
+ [47212] = 6,
+ ACTIONS(2807), 1,
sym_identifier,
- ACTIONS(2846), 1,
+ ACTIONS(2809), 1,
+ anon_sym_GT,
+ ACTIONS(2811), 1,
sym_jsx_identifier,
- STATE(1069), 1,
+ STATE(1582), 1,
sym_nested_identifier,
- STATE(1088), 1,
+ STATE(1679), 1,
sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47847] = 6,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- ACTIONS(2741), 1,
- anon_sym_extends,
- ACTIONS(2848), 1,
+ [47232] = 6,
+ ACTIONS(2813), 1,
sym_identifier,
- STATE(642), 1,
- sym_class_body,
- STATE(1480), 1,
- sym_class_heritage,
+ ACTIONS(2815), 1,
+ anon_sym_GT,
+ ACTIONS(2817), 1,
+ sym_jsx_identifier,
+ STATE(1392), 1,
+ sym_nested_identifier,
+ STATE(1624), 1,
+ sym_jsx_namespace_name,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47867] = 3,
- ACTIONS(1460), 1,
- sym_identifier,
+ [47252] = 3,
+ ACTIONS(2756), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1462), 4,
+ ACTIONS(2754), 4,
+ sym_jsx_text,
anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [47881] = 6,
- ACTIONS(2753), 1,
- anon_sym_GT,
- ACTIONS(2850), 1,
- sym_identifier,
- ACTIONS(2852), 1,
- sym_jsx_identifier,
- STATE(1066), 1,
- sym_nested_identifier,
- STATE(1071), 1,
- sym_jsx_namespace_name,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [47266] = 6,
+ ACTIONS(2087), 1,
+ anon_sym_COMMA,
+ ACTIONS(2109), 1,
+ anon_sym_COLON,
+ ACTIONS(2111), 1,
+ anon_sym_EQ,
+ ACTIONS(2819), 1,
+ anon_sym_RBRACE,
+ STATE(1311), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [47901] = 5,
- ACTIONS(861), 1,
- anon_sym_DQUOTE,
- ACTIONS(863), 1,
- anon_sym_SQUOTE,
- ACTIONS(2854), 1,
- sym_identifier,
+ [47286] = 4,
+ ACTIONS(2618), 1,
+ anon_sym_EQ,
+ STATE(1318), 1,
+ sym__initializer,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1669), 2,
- sym__module_export_name,
- sym_string,
- [47919] = 3,
- ACTIONS(1372), 1,
+ ACTIONS(2600), 3,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ [47302] = 3,
+ ACTIONS(2821), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1374), 4,
+ ACTIONS(2823), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47933] = 3,
- ACTIONS(1526), 1,
+ [47316] = 3,
+ ACTIONS(2825), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1528), 4,
+ ACTIONS(2827), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [47947] = 2,
+ [47330] = 4,
+ ACTIONS(2831), 1,
+ anon_sym_in,
+ ACTIONS(2833), 1,
+ anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1508), 5,
+ ACTIONS(2829), 3,
sym__automatic_semicolon,
- anon_sym_with,
- anon_sym_LPAREN,
+ anon_sym_COMMA,
anon_sym_SEMI,
- anon_sym_EQ,
- [47959] = 3,
- ACTIONS(1468), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1470), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [47973] = 3,
- ACTIONS(1468), 1,
- sym_identifier,
+ [47346] = 3,
+ ACTIONS(1456), 1,
+ anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1470), 4,
+ ACTIONS(1458), 4,
+ sym_jsx_text,
anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [47987] = 3,
- ACTIONS(1468), 1,
- sym_identifier,
+ sym_html_character_reference,
+ anon_sym_LT_SLASH,
+ [47360] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1470), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [48001] = 3,
- ACTIONS(1468), 1,
+ ACTIONS(1538), 5,
+ sym__automatic_semicolon,
+ anon_sym_with,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ [47372] = 6,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2835), 1,
sym_identifier,
+ ACTIONS(2837), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2839), 1,
+ sym_private_property_identifier,
+ STATE(723), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1470), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [48015] = 3,
- ACTIONS(1424), 1,
+ [47392] = 3,
+ ACTIONS(2805), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1426), 4,
+ ACTIONS(2803), 4,
anon_sym_LBRACE,
anon_sym_GT,
sym_jsx_identifier,
anon_sym_SLASH_GT,
- [48029] = 6,
- ACTIONS(2741), 1,
- anon_sym_extends,
- ACTIONS(2856), 1,
- sym_identifier,
- ACTIONS(2858), 1,
- anon_sym_LBRACE,
- STATE(567), 1,
- sym_class_body,
- STATE(1553), 1,
- sym_class_heritage,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [48049] = 3,
- ACTIONS(2862), 1,
+ [47406] = 3,
+ ACTIONS(2843), 1,
anon_sym_LT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2860), 4,
+ ACTIONS(2841), 4,
sym_jsx_text,
anon_sym_LBRACE,
sym_html_character_reference,
anon_sym_LT_SLASH,
- [48063] = 3,
- ACTIONS(2864), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1309), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [48077] = 3,
- ACTIONS(2869), 1,
- anon_sym_LT,
- ACTIONS(5), 2,
- sym_html_comment,
+ [47420] = 5,
+ ACTIONS(3), 1,
sym_comment,
- ACTIONS(2867), 4,
- sym_jsx_text,
- anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [48091] = 3,
- ACTIONS(2749), 1,
- anon_sym_LT,
- ACTIONS(5), 2,
+ ACTIONS(5), 1,
sym_html_comment,
- sym_comment,
- ACTIONS(2747), 4,
- sym_jsx_text,
- anon_sym_LBRACE,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- [48105] = 6,
- ACTIONS(2741), 1,
- anon_sym_extends,
- ACTIONS(2858), 1,
- anon_sym_LBRACE,
- ACTIONS(2871), 1,
+ ACTIONS(2845), 1,
+ anon_sym_SQUOTE,
+ STATE(1236), 1,
+ aux_sym_string_repeat2,
+ ACTIONS(2847), 2,
+ sym_unescaped_single_string_fragment,
+ sym_escape_sequence,
+ [47437] = 5,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2849), 1,
sym_identifier,
- STATE(519), 1,
- sym_class_body,
- STATE(1626), 1,
- sym_class_heritage,
+ ACTIONS(2851), 1,
+ anon_sym_STAR,
+ STATE(1550), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48125] = 6,
- ACTIONS(2121), 1,
- anon_sym_COMMA,
- ACTIONS(2139), 1,
+ [47454] = 4,
+ ACTIONS(2109), 1,
anon_sym_COLON,
- ACTIONS(2141), 1,
+ ACTIONS(2111), 1,
anon_sym_EQ,
- ACTIONS(2873), 1,
- anon_sym_RBRACE,
- STATE(1373), 1,
- aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48145] = 6,
- ACTIONS(2753), 1,
- anon_sym_GT,
- ACTIONS(2875), 1,
- sym_identifier,
- ACTIONS(2877), 1,
- sym_jsx_identifier,
- STATE(1068), 1,
- sym_nested_identifier,
- STATE(1080), 1,
- sym_jsx_namespace_name,
+ ACTIONS(2853), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [47469] = 5,
+ ACTIONS(665), 1,
+ anon_sym_COMMA,
+ ACTIONS(2855), 1,
+ anon_sym_EQ,
+ ACTIONS(2857), 1,
+ anon_sym_RBRACK,
+ STATE(1356), 1,
+ aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48165] = 3,
- ACTIONS(1468), 1,
- anon_sym_LT,
+ [47486] = 5,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(2859), 1,
+ anon_sym_class,
+ STATE(944), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1470), 4,
- sym_jsx_text,
- anon_sym_LBRACE,
+ [47503] = 6,
+ ACTIONS(3), 1,
+ sym_comment,
+ ACTIONS(5), 1,
+ sym_html_comment,
+ ACTIONS(2861), 1,
sym_html_character_reference,
- anon_sym_LT_SLASH,
- [48179] = 5,
- ACTIONS(2879), 1,
+ ACTIONS(2863), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(2865), 1,
+ sym_unescaped_double_jsx_string_fragment,
+ STATE(1213), 1,
+ aux_sym__jsx_string_repeat1,
+ [47522] = 5,
+ ACTIONS(2867), 1,
anon_sym_LBRACE,
- ACTIONS(2881), 1,
+ ACTIONS(2869), 1,
anon_sym_extends,
- STATE(76), 1,
+ STATE(341), 1,
sym_class_body,
- STATE(1577), 1,
+ STATE(1572), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48196] = 5,
- ACTIONS(675), 1,
+ [47539] = 5,
+ ACTIONS(665), 1,
anon_sym_COMMA,
- ACTIONS(2883), 1,
+ ACTIONS(2855), 1,
anon_sym_EQ,
- ACTIONS(2885), 1,
+ ACTIONS(2871), 1,
anon_sym_RBRACK,
- STATE(1327), 1,
+ STATE(1284), 1,
aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48213] = 4,
- ACTIONS(2887), 1,
- anon_sym_COMMA,
- STATE(1282), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2889), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [48228] = 4,
- ACTIONS(1713), 1,
- anon_sym_COMMA,
- STATE(1281), 1,
- aux_sym_sequence_expression_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2624), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [48243] = 4,
- ACTIONS(2887), 1,
- anon_sym_COMMA,
- STATE(1283), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2891), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [48258] = 5,
- ACTIONS(2739), 1,
+ [47556] = 5,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- ACTIONS(2881), 1,
+ ACTIONS(2869), 1,
anon_sym_extends,
- STATE(655), 1,
+ STATE(69), 1,
sym_class_body,
- STATE(1568), 1,
+ STATE(1427), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48275] = 5,
- ACTIONS(2879), 1,
- anon_sym_LBRACE,
- ACTIONS(2881), 1,
- anon_sym_extends,
- STATE(82), 1,
- sym_class_body,
- STATE(1569), 1,
- sym_class_heritage,
- ACTIONS(5), 2,
- sym_html_comment,
+ [47573] = 6,
+ ACTIONS(3), 1,
sym_comment,
- [48292] = 5,
- ACTIONS(2858), 1,
- anon_sym_LBRACE,
- ACTIONS(2881), 1,
- anon_sym_extends,
- STATE(537), 1,
- sym_class_body,
- STATE(1511), 1,
- sym_class_heritage,
- ACTIONS(5), 2,
+ ACTIONS(5), 1,
sym_html_comment,
- sym_comment,
- [48309] = 5,
- ACTIONS(2739), 1,
+ ACTIONS(2863), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(2873), 1,
+ sym_html_character_reference,
+ ACTIONS(2875), 1,
+ sym_unescaped_single_jsx_string_fragment,
+ STATE(1218), 1,
+ aux_sym__jsx_string_repeat2,
+ [47592] = 5,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- ACTIONS(2881), 1,
+ ACTIONS(2869), 1,
anon_sym_extends,
- STATE(676), 1,
+ STATE(646), 1,
sym_class_body,
- STATE(1395), 1,
+ STATE(1597), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48326] = 5,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- ACTIONS(2881), 1,
- anon_sym_extends,
- STATE(681), 1,
- sym_class_body,
- STATE(1400), 1,
- sym_class_heritage,
+ [47609] = 4,
+ ACTIONS(1717), 1,
+ anon_sym_COMMA,
+ STATE(1242), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48343] = 5,
- ACTIONS(2685), 1,
+ ACTIONS(2590), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [47624] = 5,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- ACTIONS(2893), 1,
+ ACTIONS(2877), 1,
sym_identifier,
- ACTIONS(2895), 1,
+ ACTIONS(2879), 1,
anon_sym_STAR,
- STATE(1625), 1,
+ STATE(1537), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48360] = 5,
+ [47641] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2897), 1,
+ ACTIONS(2881), 1,
+ sym_html_character_reference,
+ ACTIONS(2883), 1,
anon_sym_DQUOTE,
- STATE(1228), 1,
- aux_sym_string_repeat1,
- ACTIONS(2899), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [48377] = 5,
+ ACTIONS(2885), 1,
+ sym_unescaped_double_jsx_string_fragment,
+ STATE(1263), 1,
+ aux_sym__jsx_string_repeat1,
+ [47660] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2902), 1,
- anon_sym_SQUOTE,
- STATE(1229), 1,
- aux_sym_string_repeat2,
- ACTIONS(2904), 2,
- sym_unescaped_single_string_fragment,
+ ACTIONS(2887), 1,
+ anon_sym_DQUOTE,
+ STATE(1244), 1,
+ aux_sym_string_repeat1,
+ ACTIONS(2889), 2,
+ sym_unescaped_double_string_fragment,
sym_escape_sequence,
- [48394] = 2,
+ [47677] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1699), 4,
+ ACTIONS(1648), 4,
anon_sym_RPAREN,
anon_sym_in,
anon_sym_of,
anon_sym_EQ,
- [48405] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(2907), 1,
- sym_html_character_reference,
- ACTIONS(2910), 1,
- anon_sym_DQUOTE,
- ACTIONS(2912), 1,
- sym_unescaped_double_jsx_string_fragment,
- STATE(1231), 1,
- aux_sym__jsx_string_repeat1,
- [48424] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
+ [47688] = 2,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(2915), 1,
- sym_html_character_reference,
- ACTIONS(2918), 1,
- anon_sym_SQUOTE,
- ACTIONS(2920), 1,
- sym_unescaped_single_jsx_string_fragment,
- STATE(1232), 1,
- aux_sym__jsx_string_repeat2,
- [48443] = 5,
- ACTIONS(3), 1,
sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(2923), 1,
- anon_sym_SQUOTE,
- STATE(1256), 1,
- aux_sym_string_repeat2,
- ACTIONS(2925), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [48460] = 5,
- ACTIONS(2881), 1,
- anon_sym_extends,
- ACTIONS(2927), 1,
+ ACTIONS(1644), 4,
+ anon_sym_RPAREN,
+ anon_sym_in,
+ anon_sym_of,
+ anon_sym_EQ,
+ [47699] = 5,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- STATE(354), 1,
+ ACTIONS(2869), 1,
+ anon_sym_extends,
+ STATE(649), 1,
sym_class_body,
- STATE(1613), 1,
+ STATE(1611), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48477] = 5,
+ [47716] = 6,
+ ACTIONS(3), 1,
+ sym_comment,
+ ACTIONS(5), 1,
+ sym_html_comment,
ACTIONS(2883), 1,
+ anon_sym_SQUOTE,
+ ACTIONS(2891), 1,
+ sym_html_character_reference,
+ ACTIONS(2893), 1,
+ sym_unescaped_single_jsx_string_fragment,
+ STATE(1264), 1,
+ aux_sym__jsx_string_repeat2,
+ [47735] = 3,
+ ACTIONS(2895), 1,
anon_sym_EQ,
- ACTIONS(2929), 1,
- anon_sym_COMMA,
- ACTIONS(2931), 1,
- anon_sym_RPAREN,
- STATE(1300), 1,
- aux_sym_formal_parameters_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48494] = 5,
- ACTIONS(93), 1,
+ ACTIONS(1309), 3,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ anon_sym_RBRACK,
+ [47748] = 5,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2933), 1,
+ ACTIONS(2897), 1,
anon_sym_class,
- STATE(973), 1,
+ STATE(944), 1,
aux_sym_export_statement_repeat1,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48511] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2935), 4,
- sym__template_chars,
- sym_escape_sequence,
- anon_sym_BQUOTE,
- anon_sym_DOLLAR_LBRACE,
- [48522] = 3,
- ACTIONS(2937), 1,
- anon_sym_EQ,
+ [47765] = 4,
+ ACTIONS(2899), 1,
+ anon_sym_COMMA,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1318), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
+ ACTIONS(1815), 2,
+ anon_sym_RPAREN,
anon_sym_RBRACK,
- [48535] = 5,
+ [47780] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2923), 1,
- anon_sym_DQUOTE,
- STATE(1255), 1,
- aux_sym_string_repeat1,
- ACTIONS(2939), 2,
- sym_unescaped_double_string_fragment,
+ ACTIONS(2887), 1,
+ anon_sym_SQUOTE,
+ STATE(1252), 1,
+ aux_sym_string_repeat2,
+ ACTIONS(2902), 2,
+ sym_unescaped_single_string_fragment,
sym_escape_sequence,
- [48552] = 2,
+ [47797] = 4,
+ ACTIONS(2904), 1,
+ anon_sym_with,
+ STATE(1401), 1,
+ sym_import_attribute,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1730), 4,
+ ACTIONS(2906), 2,
sym__automatic_semicolon,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_EQ,
- [48563] = 5,
+ [47812] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2941), 1,
- anon_sym_DQUOTE,
- STATE(1246), 1,
- aux_sym_string_repeat1,
- ACTIONS(2943), 2,
- sym_unescaped_double_string_fragment,
+ ACTIONS(2908), 1,
+ anon_sym_SQUOTE,
+ STATE(1222), 1,
+ aux_sym_string_repeat2,
+ ACTIONS(2910), 2,
+ sym_unescaped_single_string_fragment,
sym_escape_sequence,
- [48580] = 5,
+ [47829] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2941), 1,
+ ACTIONS(2912), 1,
anon_sym_SQUOTE,
- STATE(1247), 1,
+ STATE(1252), 1,
aux_sym_string_repeat2,
- ACTIONS(2945), 2,
+ ACTIONS(2902), 2,
sym_unescaped_single_string_fragment,
sym_escape_sequence,
- [48597] = 4,
- ACTIONS(2139), 1,
- anon_sym_COLON,
- ACTIONS(2141), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2947), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [48612] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2139), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- ACTIONS(2199), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [48625] = 5,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(2768), 1,
- anon_sym_class,
- STATE(973), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [48642] = 5,
+ [47846] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2949), 1,
+ ACTIONS(2914), 1,
anon_sym_DQUOTE,
- STATE(1228), 1,
+ STATE(1249), 1,
aux_sym_string_repeat1,
- ACTIONS(2951), 2,
+ ACTIONS(2916), 2,
sym_unescaped_double_string_fragment,
sym_escape_sequence,
- [48659] = 5,
+ [47863] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2949), 1,
+ ACTIONS(2914), 1,
anon_sym_SQUOTE,
- STATE(1229), 1,
+ STATE(1250), 1,
aux_sym_string_repeat2,
- ACTIONS(2953), 2,
+ ACTIONS(2918), 2,
sym_unescaped_single_string_fragment,
sym_escape_sequence,
- [48676] = 5,
- ACTIONS(2858), 1,
+ [47880] = 5,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- ACTIONS(2881), 1,
+ ACTIONS(2869), 1,
anon_sym_extends,
- STATE(550), 1,
+ STATE(71), 1,
sym_class_body,
- STATE(1599), 1,
+ STATE(1456), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48693] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
+ [47897] = 5,
+ ACTIONS(2724), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2869), 1,
+ anon_sym_extends,
+ STATE(515), 1,
+ sym_class_body,
+ STATE(1450), 1,
+ sym_class_heritage,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(2955), 1,
- anon_sym_DQUOTE,
- STATE(1252), 1,
- aux_sym_string_repeat1,
- ACTIONS(2957), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [48710] = 5,
- ACTIONS(3), 1,
sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(2955), 1,
- anon_sym_SQUOTE,
- STATE(1253), 1,
- aux_sym_string_repeat2,
- ACTIONS(2959), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [48727] = 2,
+ [47914] = 5,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2920), 1,
+ sym_identifier,
+ ACTIONS(2922), 1,
+ anon_sym_STAR,
+ STATE(1565), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2139), 4,
+ [47931] = 4,
+ ACTIONS(2924), 1,
+ anon_sym_COMMA,
+ STATE(1231), 1,
+ aux_sym_variable_declaration_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(2927), 2,
sym__automatic_semicolon,
- anon_sym_LPAREN,
anon_sym_SEMI,
- anon_sym_EQ,
- [48738] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
+ [47946] = 5,
+ ACTIONS(1586), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1590), 1,
+ anon_sym_DOT,
+ ACTIONS(2929), 1,
+ sym_optional_chain,
+ STATE(651), 1,
+ sym_arguments,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(2961), 1,
- anon_sym_DQUOTE,
- STATE(1228), 1,
- aux_sym_string_repeat1,
- ACTIONS(2951), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [48755] = 5,
- ACTIONS(3), 1,
sym_comment,
- ACTIONS(5), 1,
+ [47963] = 5,
+ ACTIONS(2724), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2869), 1,
+ anon_sym_extends,
+ STATE(518), 1,
+ sym_class_body,
+ STATE(1425), 1,
+ sym_class_heritage,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(2961), 1,
- anon_sym_SQUOTE,
- STATE(1229), 1,
- aux_sym_string_repeat2,
- ACTIONS(2953), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [48772] = 5,
- ACTIONS(2685), 1,
+ sym_comment,
+ [47980] = 5,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- ACTIONS(2963), 1,
+ ACTIONS(2931), 1,
sym_identifier,
- ACTIONS(2965), 1,
+ ACTIONS(2933), 1,
anon_sym_STAR,
- STATE(1432), 1,
+ STATE(1434), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48789] = 5,
+ [47997] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2967), 1,
+ ACTIONS(2935), 1,
anon_sym_DQUOTE,
- STATE(1228), 1,
+ STATE(1244), 1,
aux_sym_string_repeat1,
- ACTIONS(2951), 2,
+ ACTIONS(2889), 2,
sym_unescaped_double_string_fragment,
sym_escape_sequence,
- [48806] = 5,
+ [48014] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2967), 1,
+ ACTIONS(2935), 1,
anon_sym_SQUOTE,
- STATE(1229), 1,
+ STATE(1252), 1,
aux_sym_string_repeat2,
- ACTIONS(2953), 2,
+ ACTIONS(2902), 2,
sym_unescaped_single_string_fragment,
sym_escape_sequence,
- [48823] = 5,
- ACTIONS(93), 1,
+ [48031] = 5,
+ ACTIONS(91), 1,
anon_sym_AT,
- ACTIONS(2969), 1,
+ ACTIONS(2780), 1,
anon_sym_class,
- STATE(973), 1,
+ STATE(944), 1,
aux_sym_export_statement_repeat1,
- STATE(991), 1,
+ STATE(1006), 1,
sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48840] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1701), 4,
- anon_sym_RPAREN,
- anon_sym_in,
- anon_sym_of,
- anon_sym_EQ,
- [48851] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1697), 4,
- anon_sym_RPAREN,
- anon_sym_in,
- anon_sym_of,
- anon_sym_EQ,
- [48862] = 5,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(2971), 1,
- sym_identifier,
- ACTIONS(2973), 1,
- anon_sym_STAR,
- STATE(1396), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [48879] = 5,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(2975), 1,
- anon_sym_class,
- STATE(973), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
+ [48048] = 3,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [48896] = 5,
- ACTIONS(2685), 1,
+ ACTIONS(2109), 2,
anon_sym_LPAREN,
- ACTIONS(2977), 1,
- sym_identifier,
- ACTIONS(2979), 1,
- anon_sym_STAR,
- STATE(1396), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [48913] = 4,
- ACTIONS(2981), 1,
+ anon_sym_COLON,
+ ACTIONS(2153), 2,
anon_sym_COMMA,
- STATE(1263), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1848), 2,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [48928] = 5,
- ACTIONS(93), 1,
- anon_sym_AT,
- ACTIONS(2745), 1,
- anon_sym_class,
- STATE(973), 1,
- aux_sym_export_statement_repeat1,
- STATE(991), 1,
- sym_decorator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [48945] = 5,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(2984), 1,
- sym_identifier,
- ACTIONS(2986), 1,
- anon_sym_STAR,
- STATE(1625), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [48962] = 4,
- ACTIONS(2988), 1,
- anon_sym_EQ,
- STATE(1631), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2630), 2,
- anon_sym_in,
- anon_sym_of,
- [48977] = 5,
- ACTIONS(1611), 1,
- anon_sym_LPAREN,
- ACTIONS(1615), 1,
- anon_sym_DOT,
- ACTIONS(2990), 1,
- sym_optional_chain,
- STATE(726), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [48994] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(2992), 1,
- sym_html_character_reference,
- ACTIONS(2994), 1,
- anon_sym_DQUOTE,
- ACTIONS(2996), 1,
- sym_unescaped_double_jsx_string_fragment,
- STATE(1286), 1,
- aux_sym__jsx_string_repeat1,
- [49013] = 6,
+ anon_sym_RBRACE,
+ [48061] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(2994), 1,
+ ACTIONS(2937), 1,
anon_sym_SQUOTE,
- ACTIONS(2998), 1,
- sym_html_character_reference,
- ACTIONS(3000), 1,
- sym_unescaped_single_jsx_string_fragment,
- STATE(1290), 1,
- aux_sym__jsx_string_repeat2,
- [49032] = 4,
- ACTIONS(2485), 1,
- anon_sym_STAR,
- ACTIONS(2487), 1,
- anon_sym_LBRACE,
+ STATE(1225), 1,
+ aux_sym_string_repeat2,
+ ACTIONS(2939), 2,
+ sym_unescaped_single_string_fragment,
+ sym_escape_sequence,
+ [48078] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- STATE(1673), 2,
- sym_namespace_import,
- sym_named_imports,
- [49047] = 5,
- ACTIONS(3002), 1,
- anon_sym_with,
- ACTIONS(3004), 1,
- anon_sym_SEMI,
- ACTIONS(3006), 1,
+ ACTIONS(2109), 4,
sym__automatic_semicolon,
- STATE(1493), 1,
- sym_import_attribute,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49064] = 5,
- ACTIONS(2881), 1,
- anon_sym_extends,
- ACTIONS(2927), 1,
+ anon_sym_LPAREN,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ [48089] = 5,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- STATE(341), 1,
+ ACTIONS(2869), 1,
+ anon_sym_extends,
+ STATE(634), 1,
sym_class_body,
- STATE(1476), 1,
+ STATE(1589), 1,
sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49081] = 4,
- ACTIONS(3008), 1,
+ [48106] = 4,
+ ACTIONS(2941), 1,
anon_sym_COMMA,
- STATE(1273), 1,
- aux_sym_variable_declaration_repeat1,
+ STATE(1242), 1,
+ aux_sym_sequence_expression_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3011), 2,
+ ACTIONS(1602), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- [49096] = 5,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3013), 1,
- sym_identifier,
- ACTIONS(3015), 1,
- anon_sym_STAR,
- STATE(1396), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49113] = 5,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3017), 1,
- sym_identifier,
- ACTIONS(3019), 1,
- anon_sym_STAR,
- STATE(1627), 1,
- sym_formal_parameters,
+ [48121] = 5,
+ ACTIONS(2855), 1,
+ anon_sym_EQ,
+ ACTIONS(2944), 1,
+ anon_sym_COMMA,
+ ACTIONS(2946), 1,
+ anon_sym_RPAREN,
+ STATE(1276), 1,
+ aux_sym_formal_parameters_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49130] = 5,
+ [48138] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3021), 1,
+ ACTIONS(2948), 1,
anon_sym_DQUOTE,
- STATE(1287), 1,
+ STATE(1244), 1,
aux_sym_string_repeat1,
- ACTIONS(3023), 2,
+ ACTIONS(2950), 2,
sym_unescaped_double_string_fragment,
sym_escape_sequence,
- [49147] = 5,
+ [48155] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3021), 1,
- anon_sym_SQUOTE,
- STATE(1288), 1,
- aux_sym_string_repeat2,
- ACTIONS(3025), 2,
- sym_unescaped_single_string_fragment,
+ ACTIONS(2937), 1,
+ anon_sym_DQUOTE,
+ STATE(1269), 1,
+ aux_sym_string_repeat1,
+ ACTIONS(2953), 2,
+ sym_unescaped_double_string_fragment,
sym_escape_sequence,
- [49164] = 5,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3027), 1,
- sym_identifier,
- ACTIONS(3029), 1,
- anon_sym_STAR,
- STATE(1625), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49181] = 5,
- ACTIONS(1342), 1,
- anon_sym_LPAREN,
- ACTIONS(1346), 1,
- anon_sym_DOT,
- ACTIONS(3031), 1,
- sym_optional_chain,
- STATE(540), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49198] = 4,
- ACTIONS(3002), 1,
- anon_sym_with,
- STATE(1543), 1,
- sym_import_attribute,
+ [48172] = 5,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2869), 1,
+ anon_sym_extends,
+ STATE(661), 1,
+ sym_class_body,
+ STATE(1564), 1,
+ sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3033), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [49213] = 4,
- ACTIONS(3035), 1,
- anon_sym_COMMA,
- STATE(1281), 1,
- aux_sym_sequence_expression_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
+ [48189] = 5,
+ ACTIONS(3), 1,
sym_comment,
- ACTIONS(1625), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [49228] = 4,
- ACTIONS(2887), 1,
- anon_sym_COMMA,
- STATE(1273), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
+ ACTIONS(5), 1,
sym_html_comment,
- sym_comment,
- ACTIONS(3038), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [49243] = 4,
- ACTIONS(2887), 1,
+ ACTIONS(2908), 1,
+ anon_sym_DQUOTE,
+ STATE(1214), 1,
+ aux_sym_string_repeat1,
+ ACTIONS(2955), 2,
+ sym_unescaped_double_string_fragment,
+ sym_escape_sequence,
+ [48206] = 4,
+ ACTIONS(2957), 1,
anon_sym_COMMA,
- STATE(1273), 1,
+ STATE(1231), 1,
aux_sym_variable_declaration_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3040), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [49258] = 4,
- ACTIONS(3042), 1,
- anon_sym_from,
- STATE(1581), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3044), 2,
+ ACTIONS(2959), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- [49273] = 5,
- ACTIONS(675), 1,
- anon_sym_COMMA,
- ACTIONS(2883), 1,
- anon_sym_EQ,
- ACTIONS(3046), 1,
- anon_sym_RBRACK,
- STATE(1302), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49290] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(3048), 1,
- sym_html_character_reference,
- ACTIONS(3050), 1,
- anon_sym_DQUOTE,
- ACTIONS(3052), 1,
- sym_unescaped_double_jsx_string_fragment,
- STATE(1231), 1,
- aux_sym__jsx_string_repeat1,
- [49309] = 5,
+ [48221] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3054), 1,
+ ACTIONS(2961), 1,
anon_sym_DQUOTE,
- STATE(1228), 1,
+ STATE(1244), 1,
aux_sym_string_repeat1,
- ACTIONS(2951), 2,
+ ACTIONS(2889), 2,
sym_unescaped_double_string_fragment,
sym_escape_sequence,
- [49326] = 5,
+ [48238] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3054), 1,
+ ACTIONS(2961), 1,
anon_sym_SQUOTE,
- STATE(1229), 1,
+ STATE(1252), 1,
aux_sym_string_repeat2,
- ACTIONS(2953), 2,
+ ACTIONS(2902), 2,
sym_unescaped_single_string_fragment,
sym_escape_sequence,
- [49343] = 5,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- ACTIONS(2881), 1,
- anon_sym_extends,
- STATE(633), 1,
- sym_class_body,
- STATE(1598), 1,
- sym_class_heritage,
+ [48255] = 4,
+ ACTIONS(2963), 1,
+ anon_sym_EQ,
+ STATE(1388), 1,
+ sym__initializer,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49360] = 6,
+ ACTIONS(2602), 2,
+ anon_sym_in,
+ anon_sym_of,
+ [48270] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3050), 1,
+ ACTIONS(2965), 1,
anon_sym_SQUOTE,
- ACTIONS(3056), 1,
- sym_html_character_reference,
- ACTIONS(3058), 1,
- sym_unescaped_single_jsx_string_fragment,
- STATE(1232), 1,
- aux_sym__jsx_string_repeat2,
- [49379] = 4,
- ACTIONS(675), 1,
- anon_sym_COMMA,
- ACTIONS(3046), 1,
- anon_sym_RBRACK,
- STATE(1331), 1,
- aux_sym_array_pattern_repeat1,
+ STATE(1252), 1,
+ aux_sym_string_repeat2,
+ ACTIONS(2967), 2,
+ sym_unescaped_single_string_fragment,
+ sym_escape_sequence,
+ [48287] = 5,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(2970), 1,
+ anon_sym_class,
+ STATE(944), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49393] = 4,
- ACTIONS(3060), 1,
+ [48304] = 5,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2972), 1,
sym_identifier,
- STATE(936), 1,
- sym_decorator_member_expression,
- STATE(992), 1,
- sym_decorator_call_expression,
+ ACTIONS(2974), 1,
+ anon_sym_STAR,
+ STATE(1550), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49407] = 4,
- ACTIONS(705), 1,
+ [48321] = 4,
+ ACTIONS(2957), 1,
anon_sym_COMMA,
- ACTIONS(1838), 1,
- anon_sym_RPAREN,
- STATE(1297), 1,
- aux_sym_array_repeat1,
+ STATE(1268), 1,
+ aux_sym_variable_declaration_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49421] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1838), 1,
- anon_sym_RPAREN,
- STATE(1263), 1,
- aux_sym_array_repeat1,
+ ACTIONS(2976), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [48336] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49435] = 3,
- ACTIONS(1643), 1,
+ ACTIONS(1646), 4,
+ anon_sym_RPAREN,
anon_sym_in,
+ anon_sym_of,
+ anon_sym_EQ,
+ [48347] = 4,
+ ACTIONS(2451), 1,
+ anon_sym_STAR,
+ ACTIONS(2453), 1,
+ anon_sym_LBRACE,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1711), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [49447] = 4,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3062), 1,
- anon_sym_GT,
+ STATE(1643), 2,
+ sym_namespace_import,
+ sym_named_imports,
+ [48362] = 5,
+ ACTIONS(2867), 1,
+ anon_sym_LBRACE,
+ ACTIONS(2869), 1,
+ anon_sym_extends,
+ STATE(354), 1,
+ sym_class_body,
+ STATE(1546), 1,
+ sym_class_heritage,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49461] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(3064), 1,
- anon_sym_RPAREN,
- STATE(1263), 1,
- aux_sym_array_repeat1,
+ [48379] = 5,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2978), 1,
+ sym_identifier,
+ ACTIONS(2980), 1,
+ anon_sym_STAR,
+ STATE(1434), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49475] = 2,
+ [48396] = 4,
+ ACTIONS(2957), 1,
+ anon_sym_COMMA,
+ STATE(1248), 1,
+ aux_sym_variable_declaration_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3066), 3,
+ ACTIONS(2982), 2,
sym__automatic_semicolon,
- anon_sym_from,
anon_sym_SEMI,
- [49485] = 4,
- ACTIONS(2634), 1,
- anon_sym_RBRACE,
- ACTIONS(3068), 1,
- anon_sym_COMMA,
- STATE(1347), 1,
- aux_sym_export_clause_repeat1,
+ [48411] = 5,
+ ACTIONS(2904), 1,
+ anon_sym_with,
+ ACTIONS(2984), 1,
+ anon_sym_SEMI,
+ ACTIONS(2986), 1,
+ sym__automatic_semicolon,
+ STATE(1528), 1,
+ sym_import_attribute,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49499] = 4,
- ACTIONS(711), 1,
- anon_sym_RPAREN,
- ACTIONS(3070), 1,
- anon_sym_COMMA,
- STATE(1352), 1,
- aux_sym_formal_parameters_repeat1,
+ [48428] = 5,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2988), 1,
+ sym_identifier,
+ ACTIONS(2990), 1,
+ anon_sym_STAR,
+ STATE(1550), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49513] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(3072), 1,
- anon_sym_RBRACK,
- STATE(1263), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
+ [48445] = 6,
+ ACTIONS(3), 1,
sym_comment,
- [49527] = 4,
- ACTIONS(675), 1,
- anon_sym_COMMA,
- ACTIONS(3074), 1,
- anon_sym_RBRACK,
- STATE(1331), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
+ ACTIONS(5), 1,
sym_html_comment,
- sym_comment,
- [49541] = 5,
+ ACTIONS(2992), 1,
+ sym_html_character_reference,
+ ACTIONS(2995), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(2997), 1,
+ sym_unescaped_double_jsx_string_fragment,
+ STATE(1263), 1,
+ aux_sym__jsx_string_repeat1,
+ [48464] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3076), 1,
- sym__glimmer_template_content,
- ACTIONS(3078), 1,
- sym_glimmer_closing_tag,
- STATE(1378), 1,
- aux_sym_glimmer_template_repeat1,
- [49557] = 4,
- ACTIONS(2121), 1,
- anon_sym_COMMA,
- ACTIONS(3080), 1,
- anon_sym_RBRACE,
- STATE(1334), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49571] = 4,
- ACTIONS(2016), 1,
- anon_sym_DQUOTE,
- ACTIONS(2018), 1,
+ ACTIONS(3000), 1,
+ sym_html_character_reference,
+ ACTIONS(3003), 1,
anon_sym_SQUOTE,
- STATE(1330), 1,
- sym_string,
+ ACTIONS(3005), 1,
+ sym_unescaped_single_jsx_string_fragment,
+ STATE(1264), 1,
+ aux_sym__jsx_string_repeat2,
+ [48483] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49585] = 4,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3082), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
+ ACTIONS(3008), 4,
+ sym__template_chars,
+ sym_escape_sequence,
+ anon_sym_BQUOTE,
+ anon_sym_DOLLAR_LBRACE,
+ [48494] = 5,
+ ACTIONS(3), 1,
sym_comment,
- [49599] = 3,
- ACTIONS(3084), 1,
+ ACTIONS(5), 1,
+ sym_html_comment,
+ ACTIONS(2845), 1,
+ anon_sym_DQUOTE,
+ STATE(1235), 1,
+ aux_sym_string_repeat1,
+ ACTIONS(3010), 2,
+ sym_unescaped_double_string_fragment,
+ sym_escape_sequence,
+ [48511] = 5,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3012), 1,
sym_identifier,
+ ACTIONS(3014), 1,
+ anon_sym_STAR,
+ STATE(1434), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3086), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [49611] = 4,
- ACTIONS(2095), 1,
+ [48528] = 4,
+ ACTIONS(2957), 1,
anon_sym_COMMA,
- ACTIONS(3088), 1,
- anon_sym_RBRACE,
- STATE(1333), 1,
- aux_sym_object_repeat1,
+ STATE(1231), 1,
+ aux_sym_variable_declaration_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49625] = 4,
- ACTIONS(2121), 1,
- anon_sym_COMMA,
- ACTIONS(3090), 1,
- anon_sym_RBRACE,
- STATE(1342), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
+ ACTIONS(3016), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [48543] = 5,
+ ACTIONS(3), 1,
sym_comment,
- [49639] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1818), 1,
- anon_sym_RBRACK,
- STATE(1263), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
+ ACTIONS(5), 1,
sym_html_comment,
- sym_comment,
- [49653] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1818), 1,
- anon_sym_RBRACK,
- STATE(1325), 1,
- aux_sym_array_repeat1,
+ ACTIONS(2912), 1,
+ anon_sym_DQUOTE,
+ STATE(1244), 1,
+ aux_sym_string_repeat1,
+ ACTIONS(2889), 2,
+ sym_unescaped_double_string_fragment,
+ sym_escape_sequence,
+ [48560] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49667] = 4,
- ACTIONS(3092), 1,
+ ACTIONS(1731), 4,
+ sym__automatic_semicolon,
anon_sym_LPAREN,
- ACTIONS(3094), 1,
- anon_sym_await,
- STATE(33), 1,
- sym__for_header,
+ anon_sym_SEMI,
+ anon_sym_EQ,
+ [48571] = 4,
+ ACTIONS(3018), 1,
+ anon_sym_from,
+ STATE(1402), 1,
+ sym__from_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49681] = 2,
+ ACTIONS(3020), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [48586] = 5,
+ ACTIONS(1333), 1,
+ anon_sym_LPAREN,
+ ACTIONS(1337), 1,
+ anon_sym_DOT,
+ ACTIONS(3022), 1,
+ sym_optional_chain,
+ STATE(528), 1,
+ sym_arguments,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1848), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [49691] = 4,
- ACTIONS(2095), 1,
- anon_sym_COMMA,
- ACTIONS(3096), 1,
- anon_sym_RBRACE,
- STATE(1358), 1,
- aux_sym_object_repeat1,
+ [48603] = 5,
+ ACTIONS(91), 1,
+ anon_sym_AT,
+ ACTIONS(2730), 1,
+ anon_sym_class,
+ STATE(944), 1,
+ aux_sym_export_statement_repeat1,
+ STATE(1006), 1,
+ sym_decorator,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49705] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1842), 1,
- anon_sym_RPAREN,
- STATE(1355), 1,
- aux_sym_array_repeat1,
+ [48620] = 4,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3024), 1,
+ sym_identifier,
+ STATE(1437), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49719] = 3,
- ACTIONS(2883), 1,
- anon_sym_EQ,
+ [48634] = 4,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3026), 1,
+ sym_identifier,
+ STATE(1567), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3098), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [49731] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1842), 1,
+ [48648] = 4,
+ ACTIONS(704), 1,
anon_sym_RPAREN,
- STATE(1263), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49745] = 4,
- ACTIONS(2653), 1,
- anon_sym_RBRACE,
- ACTIONS(3100), 1,
+ ACTIONS(3028), 1,
anon_sym_COMMA,
- STATE(1319), 1,
- aux_sym_named_imports_repeat1,
+ STATE(1307), 1,
+ aux_sym_formal_parameters_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49759] = 4,
- ACTIONS(3102), 1,
+ [48662] = 4,
+ ACTIONS(2944), 1,
anon_sym_COMMA,
- ACTIONS(3105), 1,
- anon_sym_RBRACE,
- STATE(1319), 1,
- aux_sym_named_imports_repeat1,
+ ACTIONS(2946), 1,
+ anon_sym_RPAREN,
+ STATE(1276), 1,
+ aux_sym_formal_parameters_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49773] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(3107), 1,
- anon_sym_RPAREN,
- STATE(1263), 1,
- aux_sym_array_repeat1,
+ [48676] = 4,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ ACTIONS(3032), 1,
+ anon_sym_LPAREN,
+ STATE(342), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49787] = 2,
+ [48690] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3109), 3,
- sym__automatic_semicolon,
- anon_sym_from,
- anon_sym_SEMI,
- [49797] = 4,
- ACTIONS(705), 1,
+ ACTIONS(1815), 3,
anon_sym_COMMA,
- ACTIONS(1756), 1,
anon_sym_RPAREN,
- STATE(1320), 1,
- aux_sym_array_repeat1,
+ anon_sym_RBRACK,
+ [48700] = 3,
+ ACTIONS(2855), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49811] = 4,
- ACTIONS(3111), 1,
+ ACTIONS(3034), 2,
anon_sym_COMMA,
- ACTIONS(3113), 1,
+ anon_sym_RBRACK,
+ [48712] = 4,
+ ACTIONS(2087), 1,
+ anon_sym_COMMA,
+ ACTIONS(3036), 1,
anon_sym_RBRACE,
- STATE(1299), 1,
- aux_sym_export_clause_repeat1,
+ STATE(1324), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49825] = 4,
- ACTIONS(705), 1,
- anon_sym_COMMA,
- ACTIONS(1756), 1,
- anon_sym_RPAREN,
- STATE(1263), 1,
- aux_sym_array_repeat1,
+ [48726] = 3,
+ ACTIONS(2855), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49839] = 4,
- ACTIONS(705), 1,
+ ACTIONS(3038), 2,
anon_sym_COMMA,
- ACTIONS(3115), 1,
+ anon_sym_RBRACE,
+ [48738] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(3040), 1,
anon_sym_RBRACK,
- STATE(1263), 1,
+ STATE(1221), 1,
aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49853] = 4,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3117), 1,
- sym_identifier,
- STATE(1435), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49867] = 4,
- ACTIONS(675), 1,
+ [48752] = 4,
+ ACTIONS(665), 1,
anon_sym_COMMA,
- ACTIONS(3119), 1,
+ ACTIONS(3042), 1,
anon_sym_RBRACK,
- STATE(1331), 1,
+ STATE(1288), 1,
aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49881] = 4,
- ACTIONS(2685), 1,
+ [48766] = 4,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- ACTIONS(3121), 1,
- anon_sym_COLON,
- STATE(1477), 1,
+ ACTIONS(3044), 1,
+ sym_identifier,
+ STATE(1592), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49895] = 4,
- ACTIONS(3042), 1,
- anon_sym_from,
- ACTIONS(3123), 1,
- anon_sym_as,
- STATE(1558), 1,
- sym__from_clause,
+ [48780] = 4,
+ ACTIONS(3046), 1,
+ anon_sym_COMMA,
+ ACTIONS(3049), 1,
+ anon_sym_RBRACE,
+ STATE(1286), 1,
+ aux_sym_named_imports_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49909] = 2,
+ [48794] = 4,
+ ACTIONS(2011), 1,
+ anon_sym_DQUOTE,
+ ACTIONS(2013), 1,
+ anon_sym_SQUOTE,
+ STATE(1359), 1,
+ sym_string,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3125), 3,
- sym__automatic_semicolon,
- anon_sym_with,
- anon_sym_SEMI,
- [49919] = 4,
- ACTIONS(3098), 1,
+ [48808] = 4,
+ ACTIONS(3034), 1,
anon_sym_RBRACK,
- ACTIONS(3127), 1,
+ ACTIONS(3051), 1,
anon_sym_COMMA,
- STATE(1331), 1,
+ STATE(1288), 1,
aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49933] = 4,
- ACTIONS(989), 1,
- anon_sym_while,
- ACTIONS(3130), 1,
- anon_sym_else,
- STATE(397), 1,
- sym_else_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49947] = 4,
- ACTIONS(3132), 1,
+ [48822] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(3135), 1,
+ ACTIONS(3054), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
+ STATE(1336), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [49961] = 4,
- ACTIONS(3137), 1,
- anon_sym_COMMA,
- ACTIONS(3140), 1,
- anon_sym_RBRACE,
- STATE(1334), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [49975] = 3,
- ACTIONS(2764), 1,
- anon_sym_EQ,
+ [48836] = 4,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3056), 1,
+ anon_sym_COLON,
+ STATE(1521), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1328), 2,
- anon_sym_in,
- anon_sym_of,
- [49987] = 4,
- ACTIONS(675), 1,
+ [48850] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(2885), 1,
- anon_sym_RBRACK,
- STATE(1331), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [50001] = 4,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3142), 1,
- sym_identifier,
- STATE(1407), 1,
- sym_formal_parameters,
+ ACTIONS(3058), 1,
+ anon_sym_RBRACE,
+ STATE(1297), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50015] = 3,
- ACTIONS(3144), 1,
- anon_sym_DOT,
+ [48864] = 4,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(3058), 1,
+ anon_sym_RBRACE,
+ STATE(1366), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2489), 2,
- anon_sym_LPAREN,
- sym_optional_chain,
- [50027] = 3,
- ACTIONS(3146), 1,
- sym__automatic_semicolon,
+ [48878] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2630), 2,
- anon_sym_in,
- anon_sym_of,
- [50039] = 3,
- ACTIONS(3148), 1,
+ ACTIONS(3060), 3,
+ sym__automatic_semicolon,
+ anon_sym_from,
+ anon_sym_SEMI,
+ [48888] = 3,
+ ACTIONS(3062), 1,
anon_sym_as,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3150), 2,
+ ACTIONS(3064), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
- [50051] = 4,
- ACTIONS(3152), 1,
+ [48900] = 4,
+ ACTIONS(3066), 1,
anon_sym_COMMA,
- ACTIONS(3154), 1,
+ ACTIONS(3068), 1,
anon_sym_RBRACE,
- STATE(1318), 1,
- aux_sym_named_imports_repeat1,
+ STATE(1361), 1,
+ aux_sym_export_clause_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50065] = 4,
- ACTIONS(2121), 1,
+ [48914] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(3156), 1,
+ ACTIONS(3070), 1,
anon_sym_RBRACE,
- STATE(1334), 1,
- aux_sym_object_pattern_repeat1,
+ STATE(1366), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50079] = 4,
- ACTIONS(2810), 1,
- sym_identifier,
- ACTIONS(2812), 1,
- anon_sym_LBRACK,
- ACTIONS(2814), 1,
- sym_private_property_identifier,
+ [48928] = 4,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(3072), 1,
+ anon_sym_RBRACE,
+ STATE(1366), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50093] = 2,
+ [48942] = 3,
+ ACTIONS(2855), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3158), 3,
- sym__automatic_semicolon,
- anon_sym_from,
- anon_sym_SEMI,
- [50103] = 3,
- ACTIONS(3160), 1,
+ ACTIONS(3074), 2,
+ anon_sym_COMMA,
+ anon_sym_RPAREN,
+ [48954] = 4,
+ ACTIONS(3076), 1,
+ anon_sym_COMMA,
+ ACTIONS(3078), 1,
+ anon_sym_RBRACE,
+ STATE(1321), 1,
+ aux_sym_named_imports_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [48968] = 3,
+ ACTIONS(3080), 1,
anon_sym_as,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3162), 2,
+ ACTIONS(3082), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
- [50115] = 4,
- ACTIONS(2685), 1,
+ [48980] = 4,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- ACTIONS(3164), 1,
- sym_identifier,
- STATE(1500), 1,
+ ACTIONS(3084), 1,
+ anon_sym_COLON,
+ STATE(1521), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50129] = 4,
- ACTIONS(3166), 1,
- anon_sym_COMMA,
- ACTIONS(3169), 1,
- anon_sym_RBRACE,
- STATE(1347), 1,
- aux_sym_export_clause_repeat1,
+ [48994] = 3,
+ ACTIONS(3086), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50143] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(3171), 1,
- sym__glimmer_template_content,
- ACTIONS(3173), 1,
- sym_glimmer_closing_tag,
- STATE(1374), 1,
- aux_sym_glimmer_template_repeat1,
- [50159] = 2,
+ ACTIONS(3088), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [49006] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1745), 1,
+ anon_sym_RPAREN,
+ STATE(1306), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3011), 3,
- sym__automatic_semicolon,
+ [49020] = 4,
+ ACTIONS(698), 1,
anon_sym_COMMA,
- anon_sym_SEMI,
- [50169] = 3,
- ACTIONS(2883), 1,
- anon_sym_EQ,
+ ACTIONS(1745), 1,
+ anon_sym_RPAREN,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3175), 2,
+ [49034] = 4,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3090), 1,
+ anon_sym_GT,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [49048] = 4,
+ ACTIONS(698), 1,
anon_sym_COMMA,
+ ACTIONS(3092), 1,
anon_sym_RPAREN,
- [50181] = 2,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3177), 3,
- sym__automatic_semicolon,
- anon_sym_from,
- anon_sym_SEMI,
- [50191] = 4,
- ACTIONS(3175), 1,
+ [49062] = 4,
+ ACTIONS(3074), 1,
anon_sym_RPAREN,
- ACTIONS(3179), 1,
+ ACTIONS(3094), 1,
anon_sym_COMMA,
- STATE(1352), 1,
+ STATE(1307), 1,
aux_sym_formal_parameters_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50205] = 2,
+ [49076] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2824), 3,
+ ACTIONS(2927), 3,
sym__automatic_semicolon,
anon_sym_COMMA,
anon_sym_SEMI,
- [50215] = 4,
- ACTIONS(2095), 1,
+ [49086] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(3096), 1,
+ ACTIONS(3054), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
+ STATE(1366), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50229] = 4,
- ACTIONS(705), 1,
+ [49100] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(3182), 1,
- anon_sym_RPAREN,
- STATE(1263), 1,
- aux_sym_array_repeat1,
+ ACTIONS(3097), 1,
+ anon_sym_RBRACE,
+ STATE(1366), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50243] = 4,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3184), 1,
- sym_identifier,
- STATE(1407), 1,
- sym_formal_parameters,
+ [49114] = 4,
+ ACTIONS(2087), 1,
+ anon_sym_COMMA,
+ ACTIONS(3099), 1,
+ anon_sym_RBRACE,
+ STATE(1368), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50257] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(3186), 1,
- sym__glimmer_template_content,
- ACTIONS(3188), 1,
- sym_glimmer_closing_tag,
- STATE(1386), 1,
- aux_sym_glimmer_template_repeat1,
- [50273] = 4,
- ACTIONS(2095), 1,
+ [49128] = 4,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(3190), 1,
+ ACTIONS(3036), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
- aux_sym_object_repeat1,
+ STATE(1368), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50287] = 4,
- ACTIONS(2929), 1,
- anon_sym_COMMA,
- ACTIONS(2931), 1,
- anon_sym_RPAREN,
- STATE(1300), 1,
- aux_sym_formal_parameters_repeat1,
+ [49142] = 3,
+ ACTIONS(3101), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50301] = 4,
- ACTIONS(2121), 1,
- anon_sym_COMMA,
- ACTIONS(3090), 1,
- anon_sym_RBRACE,
- STATE(1334), 1,
- aux_sym_object_pattern_repeat1,
+ ACTIONS(2602), 2,
+ anon_sym_in,
+ anon_sym_of,
+ [49154] = 4,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3103), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50315] = 4,
- ACTIONS(2095), 1,
- anon_sym_COMMA,
- ACTIONS(3192), 1,
- anon_sym_RBRACE,
- STATE(1388), 1,
- aux_sym_object_repeat1,
+ [49168] = 4,
+ ACTIONS(3105), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3107), 1,
+ anon_sym_await,
+ STATE(33), 1,
+ sym__for_header,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50329] = 4,
- ACTIONS(2685), 1,
+ [49182] = 4,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- ACTIONS(3194), 1,
+ ACTIONS(3109), 1,
sym_identifier,
- STATE(1407), 1,
+ STATE(1375), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50343] = 4,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3196), 1,
- sym_identifier,
- STATE(1500), 1,
- sym_formal_parameters,
+ [49196] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(3111), 1,
+ anon_sym_RPAREN,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50357] = 5,
- ACTIONS(3), 1,
+ [49210] = 2,
+ ACTIONS(5), 2,
+ sym_html_comment,
sym_comment,
- ACTIONS(5), 1,
+ ACTIONS(2829), 3,
+ sym__automatic_semicolon,
+ anon_sym_COMMA,
+ anon_sym_SEMI,
+ [49220] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1743), 1,
+ anon_sym_RPAREN,
+ STATE(1317), 1,
+ aux_sym_array_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [49234] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1743), 1,
+ anon_sym_RPAREN,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [49248] = 4,
+ ACTIONS(2592), 1,
+ anon_sym_RBRACE,
+ ACTIONS(3113), 1,
+ anon_sym_COMMA,
+ STATE(1286), 1,
+ aux_sym_named_imports_repeat1,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(3198), 1,
- sym__glimmer_template_content,
- ACTIONS(3201), 1,
- sym_glimmer_closing_tag,
- STATE(1364), 1,
- aux_sym_glimmer_template_repeat1,
- [50373] = 4,
- ACTIONS(2816), 1,
+ sym_comment,
+ [49262] = 4,
+ ACTIONS(2835), 1,
sym_identifier,
- ACTIONS(2818), 1,
+ ACTIONS(2837), 1,
anon_sym_LBRACK,
- ACTIONS(2820), 1,
+ ACTIONS(2839), 1,
sym_private_property_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50387] = 4,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3203), 1,
- sym_identifier,
- STATE(1500), 1,
- sym_formal_parameters,
+ [49276] = 4,
+ ACTIONS(968), 1,
+ anon_sym_while,
+ ACTIONS(3115), 1,
+ anon_sym_else,
+ STATE(404), 1,
+ sym_else_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50401] = 4,
- ACTIONS(2121), 1,
+ [49290] = 4,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(3205), 1,
+ ACTIONS(3117), 1,
anon_sym_RBRACE,
- STATE(1304), 1,
+ STATE(1368), 1,
aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50415] = 4,
- ACTIONS(2095), 1,
+ [49304] = 3,
+ ACTIONS(2766), 1,
+ anon_sym_EQ,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(1321), 2,
+ anon_sym_in,
+ anon_sym_of,
+ [49316] = 4,
+ ACTIONS(698), 1,
anon_sym_COMMA,
- ACTIONS(3207), 1,
- anon_sym_RBRACE,
- STATE(1308), 1,
- aux_sym_object_repeat1,
+ ACTIONS(1841), 1,
+ anon_sym_RBRACK,
+ STATE(1283), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50429] = 4,
- ACTIONS(2095), 1,
+ [49330] = 2,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(3119), 3,
+ sym__automatic_semicolon,
+ anon_sym_from,
+ anon_sym_SEMI,
+ [49340] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1841), 1,
+ anon_sym_RBRACK,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [49354] = 3,
+ ACTIONS(3121), 1,
+ sym_identifier,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(3123), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [49366] = 4,
+ ACTIONS(3125), 1,
anon_sym_COMMA,
- ACTIONS(3207), 1,
+ ACTIONS(3128), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
- aux_sym_object_repeat1,
+ STATE(1330), 1,
+ aux_sym_export_clause_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50443] = 4,
- ACTIONS(2121), 1,
+ [49380] = 2,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(3130), 3,
+ sym__automatic_semicolon,
+ anon_sym_from,
+ anon_sym_SEMI,
+ [49390] = 4,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(3205), 1,
+ ACTIONS(3132), 1,
anon_sym_RBRACE,
- STATE(1334), 1,
+ STATE(1353), 1,
aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50457] = 4,
- ACTIONS(2095), 1,
+ [49404] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(3192), 1,
+ ACTIONS(3134), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
+ STATE(1354), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50471] = 4,
- ACTIONS(2095), 1,
+ [49418] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(3209), 1,
+ ACTIONS(3134), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
+ STATE(1366), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50485] = 4,
- ACTIONS(2121), 1,
+ [49432] = 4,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(3211), 1,
+ ACTIONS(3132), 1,
anon_sym_RBRACE,
- STATE(1334), 1,
+ STATE(1368), 1,
aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50499] = 5,
- ACTIONS(3), 1,
+ [49446] = 4,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(3136), 1,
+ anon_sym_RBRACE,
+ STATE(1366), 1,
+ aux_sym_object_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
sym_comment,
- ACTIONS(5), 1,
+ [49460] = 3,
+ ACTIONS(3138), 1,
+ anon_sym_DOT,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(3213), 1,
- sym__glimmer_template_content,
- ACTIONS(3215), 1,
- sym_glimmer_closing_tag,
- STATE(1364), 1,
- aux_sym_glimmer_template_repeat1,
- [50515] = 4,
- ACTIONS(2685), 1,
+ sym_comment,
+ ACTIONS(2455), 2,
anon_sym_LPAREN,
- ACTIONS(3217), 1,
- anon_sym_COLON,
- STATE(1477), 1,
+ sym_optional_chain,
+ [49472] = 4,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3140), 1,
+ sym_identifier,
+ STATE(1375), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50529] = 3,
- ACTIONS(3219), 1,
+ [49486] = 4,
+ ACTIONS(3142), 1,
sym_identifier,
+ STATE(917), 1,
+ sym_decorator_member_expression,
+ STATE(1002), 1,
+ sym_decorator_call_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3221), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [50541] = 3,
- ACTIONS(2491), 1,
+ [49500] = 3,
+ ACTIONS(2457), 1,
anon_sym_DOT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(2489), 2,
+ ACTIONS(2455), 2,
anon_sym_LPAREN,
sym_optional_chain,
- [50553] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(3213), 1,
- sym__glimmer_template_content,
- ACTIONS(3223), 1,
- sym_glimmer_closing_tag,
- STATE(1364), 1,
- aux_sym_glimmer_template_repeat1,
- [50569] = 4,
- ACTIONS(3225), 1,
- anon_sym_LPAREN,
- ACTIONS(3227), 1,
- anon_sym_await,
- STATE(56), 1,
- sym__for_header,
+ [49512] = 4,
+ ACTIONS(665), 1,
+ anon_sym_COMMA,
+ ACTIONS(2871), 1,
+ anon_sym_RBRACK,
+ STATE(1288), 1,
+ aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50583] = 4,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- sym_identifier,
- STATE(1575), 1,
- sym_formal_parameters,
+ [49526] = 3,
+ ACTIONS(2895), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50597] = 4,
- ACTIONS(675), 1,
+ ACTIONS(1321), 2,
+ anon_sym_in,
+ anon_sym_of,
+ [49538] = 4,
+ ACTIONS(665), 1,
anon_sym_COMMA,
- ACTIONS(3046), 1,
+ ACTIONS(2857), 1,
anon_sym_RBRACK,
- STATE(1302), 1,
+ STATE(1356), 1,
aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50611] = 4,
- ACTIONS(705), 1,
+ [49552] = 4,
+ ACTIONS(698), 1,
anon_sym_COMMA,
- ACTIONS(1816), 1,
+ ACTIONS(1791), 1,
anon_sym_RBRACK,
- STATE(1301), 1,
+ STATE(1355), 1,
aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50625] = 4,
- ACTIONS(2095), 1,
+ [49566] = 4,
+ ACTIONS(698), 1,
anon_sym_COMMA,
- ACTIONS(3231), 1,
- anon_sym_RBRACE,
- STATE(1333), 1,
- aux_sym_object_repeat1,
+ ACTIONS(1791), 1,
+ anon_sym_RBRACK,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50639] = 4,
- ACTIONS(705), 1,
+ [49580] = 4,
+ ACTIONS(665), 1,
anon_sym_COMMA,
- ACTIONS(1816), 1,
+ ACTIONS(2857), 1,
anon_sym_RBRACK,
- STATE(1263), 1,
- aux_sym_array_repeat1,
+ STATE(1288), 1,
+ aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50653] = 3,
- ACTIONS(2883), 1,
- anon_sym_EQ,
+ [49594] = 4,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3144), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3233), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [50665] = 5,
- ACTIONS(3), 1,
+ [49608] = 4,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3146), 1,
+ sym_identifier,
+ STATE(1437), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
sym_comment,
- ACTIONS(5), 1,
+ [49622] = 4,
+ ACTIONS(2792), 1,
+ sym_identifier,
+ ACTIONS(2794), 1,
+ anon_sym_LBRACK,
+ ACTIONS(2796), 1,
+ sym_private_property_identifier,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(3213), 1,
- sym__glimmer_template_content,
- ACTIONS(3235), 1,
- sym_glimmer_closing_tag,
- STATE(1364), 1,
- aux_sym_glimmer_template_repeat1,
- [50681] = 4,
- ACTIONS(2095), 1,
+ sym_comment,
+ [49636] = 4,
+ ACTIONS(1987), 1,
anon_sym_COMMA,
- ACTIONS(3237), 1,
+ ACTIONS(3148), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
+ STATE(1366), 1,
aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50695] = 4,
- ACTIONS(2095), 1,
+ [49650] = 4,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3150), 1,
+ sym_identifier,
+ STATE(1375), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [49664] = 4,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(3239), 1,
+ ACTIONS(3152), 1,
anon_sym_RBRACE,
- STATE(1333), 1,
- aux_sym_object_repeat1,
+ STATE(1368), 1,
+ aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50709] = 4,
- ACTIONS(2121), 1,
+ [49678] = 4,
+ ACTIONS(2087), 1,
anon_sym_COMMA,
- ACTIONS(3241), 1,
+ ACTIONS(3154), 1,
anon_sym_RBRACE,
- STATE(1334), 1,
+ STATE(1368), 1,
aux_sym_object_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50723] = 4,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- ACTIONS(3245), 1,
- anon_sym_LPAREN,
- STATE(348), 1,
- sym_statement_block,
+ [49692] = 4,
+ ACTIONS(1987), 1,
+ anon_sym_COMMA,
+ ACTIONS(3156), 1,
+ anon_sym_RBRACE,
+ STATE(1366), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50737] = 4,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3247), 1,
- anon_sym_GT,
+ [49706] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(3158), 1,
+ anon_sym_RBRACK,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50751] = 4,
- ACTIONS(675), 1,
+ [49720] = 4,
+ ACTIONS(665), 1,
anon_sym_COMMA,
- ACTIONS(2885), 1,
+ ACTIONS(3160), 1,
anon_sym_RBRACK,
- STATE(1327), 1,
+ STATE(1288), 1,
aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50765] = 3,
- ACTIONS(2937), 1,
- anon_sym_EQ,
+ [49734] = 3,
+ ACTIONS(1632), 1,
+ anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1328), 2,
- anon_sym_in,
- anon_sym_of,
- [50777] = 4,
- ACTIONS(2497), 1,
+ ACTIONS(1715), 2,
+ anon_sym_LPAREN,
anon_sym_COLON,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3249), 1,
- anon_sym_GT,
+ [49746] = 4,
+ ACTIONS(3162), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3164), 1,
+ anon_sym_await,
+ STATE(27), 1,
+ sym__for_header,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50791] = 3,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- STATE(707), 1,
- sym_class_body,
+ [49760] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50802] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(651), 1,
- sym_statement_block,
+ ACTIONS(3166), 3,
+ sym__automatic_semicolon,
+ anon_sym_with,
+ anon_sym_SEMI,
+ [49770] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50813] = 2,
+ ACTIONS(3168), 3,
+ sym__automatic_semicolon,
+ anon_sym_from,
+ anon_sym_SEMI,
+ [49780] = 4,
+ ACTIONS(2614), 1,
+ anon_sym_RBRACE,
+ ACTIONS(3170), 1,
+ anon_sym_COMMA,
+ STATE(1330), 1,
+ aux_sym_export_clause_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3233), 2,
+ [49794] = 4,
+ ACTIONS(698), 1,
anon_sym_COMMA,
- anon_sym_RBRACE,
- [50822] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(708), 1,
- sym_statement_block,
+ ACTIONS(1795), 1,
+ anon_sym_RPAREN,
+ STATE(1367), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50833] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(709), 1,
- sym_statement_block,
+ [49808] = 4,
+ ACTIONS(3018), 1,
+ anon_sym_from,
+ ACTIONS(3172), 1,
+ anon_sym_as,
+ STATE(1543), 1,
+ sym__from_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50844] = 3,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- STATE(710), 1,
- sym_class_body,
+ [49822] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(1795), 1,
+ anon_sym_RPAREN,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50855] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1562), 1,
- sym_formal_parameters,
+ [49836] = 4,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3174), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50866] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(711), 1,
- sym_statement_block,
+ [49850] = 4,
+ ACTIONS(3176), 1,
+ anon_sym_COMMA,
+ ACTIONS(3179), 1,
+ anon_sym_RBRACE,
+ STATE(1366), 1,
+ aux_sym_object_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50877] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(963), 1,
- sym_statement_block,
+ [49864] = 4,
+ ACTIONS(698), 1,
+ anon_sym_COMMA,
+ ACTIONS(3181), 1,
+ anon_sym_RPAREN,
+ STATE(1221), 1,
+ aux_sym_array_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [49878] = 4,
+ ACTIONS(3183), 1,
+ anon_sym_COMMA,
+ ACTIONS(3186), 1,
+ anon_sym_RBRACE,
+ STATE(1368), 1,
+ aux_sym_object_pattern_repeat1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [49892] = 4,
+ ACTIONS(665), 1,
+ anon_sym_COMMA,
+ ACTIONS(2871), 1,
+ anon_sym_RBRACK,
+ STATE(1284), 1,
+ aux_sym_array_pattern_repeat1,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50888] = 3,
- ACTIONS(2685), 1,
+ [49906] = 4,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1420), 1,
+ ACTIONS(3188), 1,
+ sym_identifier,
+ STATE(1437), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50899] = 3,
- ACTIONS(2149), 1,
+ [49920] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(937), 1,
+ STATE(954), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50910] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1513), 1,
- sym_formal_parameters,
+ [49931] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(951), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50921] = 3,
- ACTIONS(3251), 1,
+ [49942] = 3,
+ ACTIONS(3190), 1,
anon_sym_LBRACE,
- STATE(706), 1,
+ STATE(517), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50932] = 3,
- ACTIONS(2685), 1,
+ [49953] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1426), 1,
+ STATE(1449), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50943] = 3,
- ACTIONS(2810), 1,
- sym_identifier,
- ACTIONS(2814), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [50954] = 3,
- ACTIONS(2149), 1,
+ [49964] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(938), 1,
+ STATE(663), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50965] = 3,
- ACTIONS(2149), 1,
+ [49975] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(930), 1,
+ STATE(925), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50976] = 2,
+ [49986] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1373), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3253), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [50985] = 3,
- ACTIONS(2149), 1,
+ [49997] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(931), 1,
+ STATE(73), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [50996] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(935), 1,
- sym_statement_block,
+ [50008] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51007] = 3,
- ACTIONS(2149), 1,
+ ACTIONS(3194), 2,
anon_sym_LBRACE,
- STATE(942), 1,
- sym_statement_block,
+ anon_sym_EQ_GT,
+ [50017] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1580), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51018] = 3,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(3062), 1,
- anon_sym_GT,
+ [50028] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51029] = 3,
- ACTIONS(2149), 1,
+ ACTIONS(3074), 2,
+ anon_sym_COMMA,
+ anon_sym_RPAREN,
+ [50037] = 2,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ ACTIONS(3196), 2,
anon_sym_LBRACE,
- STATE(939), 1,
- sym_statement_block,
+ anon_sym_EQ_GT,
+ [50046] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51040] = 3,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3062), 1,
- anon_sym_GT,
+ ACTIONS(3198), 2,
+ anon_sym_in,
+ anon_sym_of,
+ [50055] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(946), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51051] = 3,
- ACTIONS(2149), 1,
+ [50066] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(959), 1,
+ STATE(324), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51062] = 3,
- ACTIONS(3243), 1,
+ [50077] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(967), 1,
+ STATE(949), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51073] = 3,
- ACTIONS(2685), 1,
+ [50088] = 3,
+ ACTIONS(3200), 1,
anon_sym_LPAREN,
- STATE(1564), 1,
- sym_formal_parameters,
+ STATE(358), 1,
+ sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51084] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1565), 1,
- sym_formal_parameters,
+ [50099] = 3,
+ ACTIONS(2831), 1,
+ anon_sym_in,
+ ACTIONS(2833), 1,
+ anon_sym_of,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51095] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1566), 1,
- sym_formal_parameters,
+ [50110] = 3,
+ ACTIONS(3202), 1,
+ sym_identifier,
+ ACTIONS(3204), 1,
+ anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51106] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(960), 1,
- sym_statement_block,
+ [50121] = 3,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(3090), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51117] = 3,
- ACTIONS(2149), 1,
+ [50132] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(962), 1,
+ STATE(952), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51128] = 3,
- ACTIONS(3243), 1,
+ [50143] = 3,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3090), 1,
+ anon_sym_GT,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [50154] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(947), 1,
+ STATE(360), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51139] = 3,
- ACTIONS(2685), 1,
+ [50165] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1456), 1,
+ STATE(1576), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51150] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1570), 1,
- sym_formal_parameters,
+ [50176] = 3,
+ ACTIONS(3206), 1,
+ sym_identifier,
+ ACTIONS(3208), 1,
+ sym_private_property_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51161] = 3,
- ACTIONS(2149), 1,
+ [50187] = 3,
+ ACTIONS(3190), 1,
anon_sym_LBRACE,
- STATE(932), 1,
+ STATE(522), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51172] = 2,
+ [50198] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1434), 2,
+ ACTIONS(1415), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- [51181] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(408), 1,
- sym_statement_block,
+ [50207] = 3,
+ ACTIONS(3210), 1,
+ anon_sym_SEMI,
+ ACTIONS(3212), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51192] = 3,
- ACTIONS(3255), 1,
- anon_sym_LBRACE,
- STATE(562), 1,
- sym_statement_block,
+ [50218] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51203] = 3,
- ACTIONS(3243), 1,
+ ACTIONS(3214), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50227] = 3,
+ ACTIONS(3216), 1,
anon_sym_LBRACE,
- STATE(958), 1,
- sym_statement_block,
+ STATE(1562), 1,
+ sym_object,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51214] = 3,
- ACTIONS(3257), 1,
- anon_sym_LPAREN,
- STATE(51), 1,
- sym_parenthesized_expression,
+ [50238] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51225] = 3,
- ACTIONS(3255), 1,
- anon_sym_LBRACE,
- STATE(520), 1,
- sym_statement_block,
+ ACTIONS(3218), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50247] = 3,
+ ACTIONS(3220), 1,
+ anon_sym_SEMI,
+ ACTIONS(3222), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51236] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1465), 1,
- sym_formal_parameters,
+ [50258] = 3,
+ ACTIONS(2835), 1,
+ sym_identifier,
+ ACTIONS(2839), 1,
+ sym_private_property_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51247] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1466), 1,
- sym_formal_parameters,
+ [50269] = 3,
+ ACTIONS(3192), 1,
+ anon_sym_LBRACE,
+ STATE(74), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51258] = 3,
- ACTIONS(2685), 1,
+ [50280] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1467), 1,
+ STATE(1538), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51269] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(313), 1,
- sym_statement_block,
+ [50291] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51280] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(712), 1,
- sym_statement_block,
+ ACTIONS(1474), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50300] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51291] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(953), 1,
- sym_statement_block,
+ ACTIONS(1478), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50309] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1539), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51302] = 2,
+ [50320] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1544), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1454), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [51311] = 2,
+ [50331] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1471), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1405), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [51320] = 3,
- ACTIONS(3243), 1,
+ [50342] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(941), 1,
+ STATE(346), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51331] = 3,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(3082), 1,
- anon_sym_GT,
+ [50353] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1606), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51342] = 3,
- ACTIONS(2149), 1,
+ [50364] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(954), 1,
+ STATE(943), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51353] = 3,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3082), 1,
+ [50375] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1472), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [50386] = 3,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(3103), 1,
anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51364] = 3,
- ACTIONS(2685), 1,
+ [50397] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1585), 1,
+ STATE(1547), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51375] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(955), 1,
- sym_statement_block,
+ [50408] = 3,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3103), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51386] = 3,
- ACTIONS(2685), 1,
+ [50419] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1586), 1,
+ STATE(1396), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51397] = 3,
- ACTIONS(2149), 1,
+ [50430] = 3,
+ ACTIONS(3190), 1,
anon_sym_LBRACE,
- STATE(956), 1,
+ STATE(519), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51408] = 2,
+ [50441] = 3,
+ ACTIONS(3190), 1,
+ anon_sym_LBRACE,
+ STATE(520), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3098), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [51417] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(957), 1,
- sym_statement_block,
+ [50452] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51428] = 3,
- ACTIONS(2685), 1,
+ ACTIONS(3186), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [50461] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1589), 1,
+ STATE(1475), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51439] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(958), 1,
- sym_statement_block,
+ [50472] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51450] = 3,
- ACTIONS(3243), 1,
+ ACTIONS(3224), 2,
anon_sym_LBRACE,
- STATE(949), 1,
- sym_statement_block,
+ anon_sym_EQ_GT,
+ [50481] = 3,
+ ACTIONS(3018), 1,
+ anon_sym_from,
+ STATE(1398), 1,
+ sym__from_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51461] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1591), 1,
- sym_formal_parameters,
+ [50492] = 3,
+ ACTIONS(2724), 1,
+ anon_sym_LBRACE,
+ STATE(521), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51472] = 3,
- ACTIONS(3257), 1,
+ [50503] = 3,
+ ACTIONS(3226), 1,
anon_sym_LPAREN,
- STATE(31), 1,
+ STATE(25), 1,
sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51483] = 3,
- ACTIONS(3251), 1,
+ [50514] = 3,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- STATE(669), 1,
- sym_statement_block,
+ STATE(72), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51494] = 3,
- ACTIONS(3257), 1,
+ [50525] = 3,
+ ACTIONS(3226), 1,
anon_sym_LPAREN,
STATE(32), 1,
sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51505] = 3,
- ACTIONS(3257), 1,
- anon_sym_LPAREN,
- STATE(27), 1,
- sym_parenthesized_expression,
+ [50536] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51516] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1595), 1,
- sym_formal_parameters,
+ ACTIONS(3034), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACK,
+ [50545] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51527] = 3,
- ACTIONS(2685), 1,
+ ACTIONS(3179), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [50554] = 3,
+ ACTIONS(3226), 1,
anon_sym_LPAREN,
- STATE(1596), 1,
- sym_formal_parameters,
+ STATE(34), 1,
+ sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51538] = 3,
- ACTIONS(2685), 1,
+ [50565] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(947), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [50576] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1597), 1,
+ STATE(1378), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51549] = 3,
- ACTIONS(3243), 1,
+ [50587] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(950), 1,
+ STATE(627), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51560] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(951), 1,
- sym_statement_block,
+ [50598] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51571] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(952), 1,
- sym_statement_block,
+ ACTIONS(1719), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50607] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1404), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51582] = 2,
+ [50618] = 3,
+ ACTIONS(3192), 1,
+ anon_sym_LBRACE,
+ STATE(633), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3259), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [51591] = 3,
- ACTIONS(3261), 1,
+ [50629] = 3,
+ ACTIONS(3228), 1,
anon_sym_LPAREN,
STATE(36), 1,
sym__for_header,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51602] = 2,
+ [50640] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(927), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3263), 2,
- anon_sym_LBRACE,
+ [50651] = 3,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(2275), 1,
anon_sym_EQ_GT,
- [51611] = 3,
- ACTIONS(3243), 1,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [50662] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(953), 1,
+ STATE(924), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51622] = 3,
- ACTIONS(2149), 1,
+ [50673] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(948), 1,
+ STATE(70), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51633] = 2,
+ [50684] = 3,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
+ ACTIONS(3230), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3105), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [51642] = 2,
+ [50695] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1569), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3140), 2,
+ [50706] = 3,
+ ACTIONS(3232), 1,
anon_sym_COMMA,
- anon_sym_RBRACE,
- [51651] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1459), 1,
- sym_formal_parameters,
+ ACTIONS(3234), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51662] = 3,
- ACTIONS(2927), 1,
- anon_sym_LBRACE,
- STATE(333), 1,
- sym_class_body,
+ [50717] = 3,
+ ACTIONS(3018), 1,
+ anon_sym_from,
+ STATE(1261), 1,
+ sym__from_clause,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51673] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(948), 1,
- sym_statement_block,
+ [50728] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51684] = 2,
+ ACTIONS(3236), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50737] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(514), 2,
+ ACTIONS(3238), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- [51693] = 3,
- ACTIONS(3261), 1,
- anon_sym_LPAREN,
- STATE(47), 1,
- sym__for_header,
+ [50746] = 3,
+ ACTIONS(3192), 1,
+ anon_sym_LBRACE,
+ STATE(68), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51704] = 3,
- ACTIONS(2739), 1,
+ [50757] = 3,
+ ACTIONS(2724), 1,
anon_sym_LBRACE,
- STATE(652), 1,
+ STATE(516), 1,
sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51715] = 2,
+ [50768] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3135), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [51724] = 3,
- ACTIONS(2149), 1,
+ ACTIONS(3240), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50777] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(971), 1,
+ STATE(930), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51735] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1600), 1,
- sym_formal_parameters,
+ [50788] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51746] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1606), 1,
- sym_formal_parameters,
+ ACTIONS(3242), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [50797] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51757] = 2,
+ ACTIONS(3038), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [50806] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3265), 2,
+ ACTIONS(3244), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- [51766] = 3,
- ACTIONS(3267), 1,
+ [50815] = 3,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- STATE(343), 1,
- sym_statement_block,
+ STATE(75), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51777] = 3,
- ACTIONS(3269), 1,
- sym_identifier,
- ACTIONS(3271), 1,
- sym_private_property_identifier,
+ [50826] = 3,
+ ACTIONS(3226), 1,
+ anon_sym_LPAREN,
+ STATE(1464), 1,
+ sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51788] = 3,
- ACTIONS(2685), 1,
+ [50837] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1552), 1,
+ STATE(1586), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51799] = 3,
- ACTIONS(3273), 1,
- anon_sym_LPAREN,
- STATE(342), 1,
- sym_parenthesized_expression,
+ [50848] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(931), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51810] = 2,
+ [50859] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(933), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3275), 2,
- anon_sym_in,
- anon_sym_of,
- [51819] = 2,
+ [50870] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3277), 2,
+ ACTIONS(3246), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- [51828] = 3,
- ACTIONS(2685), 1,
+ [50879] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1556), 1,
+ STATE(1555), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51839] = 3,
- ACTIONS(3279), 1,
- anon_sym_SEMI,
- ACTIONS(3281), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [51850] = 3,
- ACTIONS(2685), 1,
+ [50890] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1444), 1,
+ STATE(1529), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51861] = 3,
- ACTIONS(3243), 1,
+ [50901] = 3,
+ ACTIONS(3248), 1,
anon_sym_LBRACE,
- STATE(954), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [51872] = 3,
- ACTIONS(2816), 1,
- sym_identifier,
- ACTIONS(2820), 1,
- sym_private_property_identifier,
+ STATE(400), 1,
+ sym_switch_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51883] = 3,
- ACTIONS(2139), 1,
+ [50912] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- ACTIONS(2371), 1,
- anon_sym_EQ_GT,
+ STATE(1556), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51894] = 3,
- ACTIONS(3283), 1,
- anon_sym_LBRACE,
- STATE(404), 1,
- sym_switch_body,
+ [50923] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1590), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51905] = 3,
- ACTIONS(2685), 1,
+ [50934] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1528), 1,
+ STATE(1557), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51916] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(744), 1,
- sym_statement_block,
+ [50945] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51927] = 3,
- ACTIONS(2685), 1,
+ ACTIONS(3128), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [50954] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1572), 1,
+ STATE(1593), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51938] = 3,
- ACTIONS(2685), 1,
+ [50965] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1579), 1,
+ STATE(1594), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51949] = 3,
- ACTIONS(3285), 1,
+ [50976] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(84), 1,
+ STATE(926), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51960] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1588), 1,
- sym_formal_parameters,
+ [50987] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(928), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51971] = 3,
- ACTIONS(2139), 1,
+ [50998] = 3,
+ ACTIONS(3228), 1,
anon_sym_LPAREN,
- ACTIONS(3287), 1,
- anon_sym_EQ_GT,
+ STATE(52), 1,
+ sym__for_header,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51982] = 3,
- ACTIONS(2685), 1,
+ [51009] = 3,
+ ACTIONS(3226), 1,
anon_sym_LPAREN,
- STATE(1632), 1,
- sym_formal_parameters,
+ STATE(28), 1,
+ sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [51993] = 3,
- ACTIONS(3255), 1,
+ [51020] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(525), 1,
+ STATE(932), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52004] = 3,
- ACTIONS(3255), 1,
- anon_sym_LBRACE,
- STATE(528), 1,
- sym_statement_block,
+ [51031] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52015] = 3,
- ACTIONS(3243), 1,
+ ACTIONS(3250), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [51040] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(955), 1,
+ STATE(969), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52026] = 2,
+ [51051] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(937), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3289), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- [52035] = 3,
- ACTIONS(2858), 1,
- anon_sym_LBRACE,
- STATE(529), 1,
- sym_class_body,
+ [51062] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52046] = 3,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(3249), 1,
- anon_sym_GT,
+ ACTIONS(3252), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [51071] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(938), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52057] = 3,
- ACTIONS(3285), 1,
+ [51082] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(65), 1,
+ STATE(939), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52068] = 2,
+ [51093] = 3,
+ ACTIONS(3254), 1,
+ anon_sym_LBRACE,
+ STATE(338), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3291), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [52077] = 2,
+ [51104] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3293), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [52086] = 3,
- ACTIONS(2685), 1,
+ ACTIONS(3256), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [51113] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1614), 1,
+ STATE(1598), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52097] = 3,
- ACTIONS(2685), 1,
+ [51124] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1616), 1,
+ STATE(1599), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52108] = 3,
- ACTIONS(2685), 1,
+ [51135] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1617), 1,
+ STATE(1600), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52119] = 3,
- ACTIONS(2685), 1,
+ [51146] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1622), 1,
+ STATE(1602), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52130] = 3,
- ACTIONS(2685), 1,
+ [51157] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1633), 1,
+ STATE(1603), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52141] = 3,
- ACTIONS(2685), 1,
+ [51168] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1634), 1,
+ STATE(1604), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52152] = 2,
+ [51179] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3295), 2,
+ ACTIONS(3258), 2,
anon_sym_LBRACE,
anon_sym_EQ_GT,
- [52161] = 3,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3249), 1,
- anon_sym_GT,
+ [51188] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52172] = 3,
- ACTIONS(2685), 1,
+ ACTIONS(3049), 2,
+ anon_sym_COMMA,
+ anon_sym_RBRACE,
+ [51197] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1398), 1,
+ STATE(1607), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52183] = 3,
- ACTIONS(2685), 1,
+ [51208] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1399), 1,
+ STATE(1609), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52194] = 2,
+ [51219] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1442), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3297), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [52203] = 3,
- ACTIONS(2685), 1,
+ [51230] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1402), 1,
+ STATE(1612), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52214] = 3,
- ACTIONS(3285), 1,
+ [51241] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(67), 1,
+ STATE(940), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52225] = 3,
- ACTIONS(2739), 1,
+ [51252] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(730), 1,
- sym_class_body,
+ STATE(941), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52236] = 3,
- ACTIONS(2685), 1,
+ [51263] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1403), 1,
+ STATE(1482), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52247] = 3,
- ACTIONS(2685), 1,
+ [51274] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1405), 1,
+ STATE(1613), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52258] = 3,
- ACTIONS(2685), 1,
+ [51285] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1410), 1,
+ STATE(1372), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52269] = 3,
- ACTIONS(2685), 1,
+ [51296] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1411), 1,
+ STATE(1371), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52280] = 3,
- ACTIONS(2685), 1,
+ [51307] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1413), 1,
+ STATE(1510), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52291] = 3,
- ACTIONS(2685), 1,
+ [51318] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1414), 1,
+ STATE(1376), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52302] = 3,
- ACTIONS(2685), 1,
+ [51329] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1415), 1,
+ STATE(1384), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52313] = 3,
- ACTIONS(2685), 1,
+ [51340] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1417), 1,
+ STATE(1386), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52324] = 3,
- ACTIONS(2685), 1,
+ [51351] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1419), 1,
+ STATE(1391), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52335] = 3,
- ACTIONS(2685), 1,
+ [51362] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1424), 1,
+ STATE(1432), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52346] = 3,
- ACTIONS(2685), 1,
+ [51373] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1425), 1,
+ STATE(1439), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52357] = 3,
- ACTIONS(2685), 1,
+ [51384] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1429), 1,
+ STATE(1452), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52368] = 3,
- ACTIONS(3299), 1,
+ [51395] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(1514), 1,
- sym_object,
+ STATE(935), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52379] = 2,
+ [51406] = 3,
+ ACTIONS(3254), 1,
+ anon_sym_LBRACE,
+ STATE(349), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3301), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [52388] = 3,
- ACTIONS(2685), 1,
+ [51417] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(934), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51428] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1440), 1,
+ STATE(1522), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52399] = 2,
+ [51439] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(942), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3303), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [52408] = 3,
- ACTIONS(2685), 1,
+ [51450] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1441), 1,
+ STATE(1524), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52419] = 3,
- ACTIONS(2685), 1,
+ [51461] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1446), 1,
+ STATE(1535), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52430] = 3,
- ACTIONS(2685), 1,
+ [51472] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1449), 1,
+ STATE(1573), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52441] = 3,
- ACTIONS(2685), 1,
+ [51483] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1451), 1,
+ STATE(1577), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52452] = 3,
- ACTIONS(2685), 1,
+ [51494] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1453), 1,
+ STATE(1591), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52463] = 3,
- ACTIONS(2685), 1,
+ [51505] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1455), 1,
+ STATE(1596), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52474] = 3,
- ACTIONS(3243), 1,
+ [51516] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(944), 1,
+ STATE(936), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52485] = 3,
- ACTIONS(2858), 1,
+ [51527] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(538), 1,
- sym_class_body,
+ STATE(657), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52496] = 2,
+ [51538] = 3,
+ ACTIONS(3254), 1,
+ anon_sym_LBRACE,
+ STATE(350), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3305), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [52505] = 3,
- ACTIONS(3243), 1,
+ [51549] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(956), 1,
+ STATE(937), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52516] = 3,
- ACTIONS(2149), 1,
+ [51560] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(944), 1,
+ STATE(951), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52527] = 3,
- ACTIONS(3267), 1,
+ [51571] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(353), 1,
+ STATE(954), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51582] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(935), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52538] = 3,
- ACTIONS(3307), 1,
+ [51593] = 3,
+ ACTIONS(3260), 1,
anon_sym_SEMI,
- ACTIONS(3309), 1,
+ ACTIONS(3262), 1,
sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52549] = 3,
- ACTIONS(3311), 1,
+ [51604] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(925), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51615] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1478), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51626] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1480), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51637] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1481), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51648] = 3,
+ ACTIONS(2724), 1,
+ anon_sym_LBRACE,
+ STATE(539), 1,
+ sym_class_body,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51659] = 3,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(3144), 1,
+ anon_sym_GT,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51670] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(938), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51681] = 3,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3144), 1,
+ anon_sym_GT,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51692] = 3,
+ ACTIONS(3190), 1,
+ anon_sym_LBRACE,
+ STATE(540), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51703] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(946), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51714] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(949), 1,
+ sym_statement_block,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [51725] = 3,
+ ACTIONS(3264), 1,
sym_identifier,
- ACTIONS(3313), 1,
- anon_sym_STAR,
+ ACTIONS(3266), 1,
+ sym_jsx_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52560] = 3,
- ACTIONS(3315), 1,
+ [51736] = 3,
+ ACTIONS(3268), 1,
sym_identifier,
- ACTIONS(3317), 1,
- anon_sym_STAR,
+ ACTIONS(3270), 1,
+ sym_private_property_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52571] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1486), 1,
- sym_formal_parameters,
+ [51747] = 3,
+ ACTIONS(2792), 1,
+ sym_identifier,
+ ACTIONS(2796), 1,
+ sym_private_property_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52582] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(963), 1,
- sym_statement_block,
+ [51758] = 3,
+ ACTIONS(3272), 1,
+ anon_sym_SEMI,
+ ACTIONS(3274), 1,
+ sym__automatic_semicolon,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52593] = 3,
- ACTIONS(2149), 1,
+ [51769] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(941), 1,
+ STATE(952), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52604] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(937), 1,
- sym_statement_block,
+ [51780] = 3,
+ ACTIONS(3226), 1,
+ anon_sym_LPAREN,
+ STATE(50), 1,
+ sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52615] = 3,
- ACTIONS(3243), 1,
+ [51791] = 3,
+ ACTIONS(2867), 1,
anon_sym_LBRACE,
- STATE(938), 1,
- sym_statement_block,
+ STATE(351), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52626] = 3,
- ACTIONS(3243), 1,
+ [51802] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(930), 1,
+ STATE(947), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52637] = 3,
- ACTIONS(2685), 1,
+ [51813] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1628), 1,
+ STATE(1419), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52648] = 3,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- STATE(678), 1,
- sym_class_body,
+ [51824] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52659] = 3,
- ACTIONS(2879), 1,
+ ACTIONS(509), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [51833] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(66), 1,
- sym_class_body,
+ STATE(680), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52670] = 3,
- ACTIONS(3243), 1,
+ [51844] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(931), 1,
+ STATE(936), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52681] = 3,
- ACTIONS(2685), 1,
+ [51855] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1471), 1,
+ STATE(1496), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52692] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(680), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [52703] = 3,
- ACTIONS(2685), 1,
+ [51866] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1495), 1,
+ STATE(1497), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52714] = 3,
- ACTIONS(3319), 1,
- anon_sym_SEMI,
- ACTIONS(3321), 1,
- sym__automatic_semicolon,
+ [51877] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1514), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52725] = 3,
- ACTIONS(3255), 1,
+ [51888] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(542), 1,
+ STATE(927), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52736] = 2,
+ [51899] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(930), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3169), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [52745] = 3,
- ACTIONS(2879), 1,
+ [51910] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(79), 1,
- sym_class_body,
+ STATE(931), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52756] = 3,
- ACTIONS(2685), 1,
+ [51921] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1509), 1,
+ STATE(1413), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52767] = 3,
- ACTIONS(3251), 1,
- anon_sym_LBRACE,
- STATE(699), 1,
- sym_statement_block,
+ [51932] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52778] = 3,
- ACTIONS(3323), 1,
- anon_sym_COMMA,
- ACTIONS(3325), 1,
- anon_sym_from,
+ ACTIONS(1731), 2,
+ anon_sym_LPAREN,
+ anon_sym_COLON,
+ [51941] = 3,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ STATE(679), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52789] = 3,
- ACTIONS(3327), 1,
- anon_sym_SEMI,
- ACTIONS(3329), 1,
- sym__automatic_semicolon,
+ [51952] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52800] = 2,
+ ACTIONS(1406), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [51961] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1715), 2,
+ ACTIONS(3276), 2,
sym__automatic_semicolon,
anon_sym_SEMI,
- [52809] = 3,
- ACTIONS(3042), 1,
- anon_sym_from,
- STATE(1271), 1,
- sym__from_clause,
+ [51970] = 3,
+ ACTIONS(3030), 1,
+ anon_sym_LBRACE,
+ STATE(955), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52820] = 2,
+ [51981] = 3,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ STATE(638), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3331), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [52829] = 3,
- ACTIONS(3243), 1,
+ [51992] = 3,
+ ACTIONS(3190), 1,
anon_sym_LBRACE,
- STATE(935), 1,
+ STATE(559), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52840] = 3,
- ACTIONS(3243), 1,
+ [52003] = 3,
+ ACTIONS(2760), 1,
anon_sym_LBRACE,
- STATE(942), 1,
+ STATE(640), 1,
+ sym_class_body,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [52014] = 3,
+ ACTIONS(3190), 1,
+ anon_sym_LBRACE,
+ STATE(562), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52851] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1557), 1,
- sym_formal_parameters,
+ [52025] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52862] = 3,
- ACTIONS(3251), 1,
+ ACTIONS(1721), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [52034] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(703), 1,
+ STATE(642), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52873] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(939), 1,
- sym_statement_block,
+ [52045] = 2,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52884] = 3,
- ACTIONS(3257), 1,
+ ACTIONS(1723), 2,
+ sym__automatic_semicolon,
+ anon_sym_SEMI,
+ [52054] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1498), 1,
- sym_parenthesized_expression,
+ STATE(1512), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52895] = 3,
- ACTIONS(3243), 1,
+ [52065] = 3,
+ ACTIONS(2867), 1,
anon_sym_LBRACE,
- STATE(959), 1,
- sym_statement_block,
+ STATE(347), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52906] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1555), 1,
- sym_formal_parameters,
+ [52076] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(939), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52917] = 3,
- ACTIONS(2685), 1,
+ [52087] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1637), 1,
+ STATE(1511), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52928] = 3,
- ACTIONS(2685), 1,
+ [52098] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1433), 1,
+ STATE(1523), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52939] = 3,
- ACTIONS(3243), 1,
+ [52109] = 3,
+ ACTIONS(3254), 1,
anon_sym_LBRACE,
- STATE(960), 1,
+ STATE(353), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52950] = 3,
- ACTIONS(3243), 1,
+ [52120] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(962), 1,
+ STATE(940), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52961] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(932), 1,
- sym_statement_block,
+ [52131] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1460), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52972] = 3,
- ACTIONS(2739), 1,
- anon_sym_LBRACE,
- STATE(661), 1,
- sym_class_body,
+ [52142] = 3,
+ ACTIONS(3226), 1,
+ anon_sym_LPAREN,
+ STATE(35), 1,
+ sym_parenthesized_expression,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52983] = 3,
- ACTIONS(2858), 1,
+ [52153] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(533), 1,
- sym_class_body,
+ STATE(945), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [52994] = 3,
- ACTIONS(3267), 1,
- anon_sym_LBRACE,
- STATE(338), 1,
- sym_statement_block,
+ [52164] = 3,
+ ACTIONS(2475), 1,
+ anon_sym_COLON,
+ ACTIONS(3174), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53005] = 2,
+ [52175] = 3,
+ ACTIONS(2481), 1,
+ anon_sym_DOT,
+ ACTIONS(3174), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1409), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [53014] = 3,
- ACTIONS(3257), 1,
+ [52186] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(34), 1,
- sym_parenthesized_expression,
+ STATE(1525), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53025] = 2,
+ [52197] = 3,
+ ACTIONS(2724), 1,
+ anon_sym_LBRACE,
+ STATE(566), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3333), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [53034] = 3,
- ACTIONS(3042), 1,
- anon_sym_from,
- STATE(1574), 1,
- sym__from_clause,
+ [52208] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1526), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53045] = 2,
+ [52219] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(950), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1739), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [53054] = 3,
- ACTIONS(3267), 1,
+ [52230] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(339), 1,
+ STATE(924), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53065] = 3,
- ACTIONS(2685), 1,
+ [52241] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1638), 1,
+ STATE(1441), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53076] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1507), 1,
- sym_formal_parameters,
+ [52252] = 3,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ STATE(647), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53087] = 2,
+ [52263] = 3,
+ ACTIONS(3192), 1,
+ anon_sym_LBRACE,
+ STATE(648), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1722), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [53096] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1508), 1,
- sym_formal_parameters,
+ [52274] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(941), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53107] = 3,
- ACTIONS(3255), 1,
+ [52285] = 3,
+ ACTIONS(3190), 1,
anon_sym_LBRACE,
- STATE(534), 1,
+ STATE(567), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53118] = 2,
+ [52296] = 3,
+ ACTIONS(3192), 1,
+ anon_sym_LBRACE,
+ STATE(650), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3335), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- [53127] = 3,
- ACTIONS(2927), 1,
+ [52307] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(340), 1,
- sym_class_body,
+ STATE(618), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53138] = 3,
- ACTIONS(2149), 1,
+ [52318] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1420), 1,
+ sym_formal_parameters,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [52329] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(945), 1,
+ STATE(942), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53149] = 2,
+ [52340] = 3,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ STATE(652), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(1730), 2,
- anon_sym_LPAREN,
- anon_sym_COLON,
- [53158] = 3,
- ACTIONS(2149), 1,
+ [52351] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(967), 1,
+ STATE(955), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53169] = 3,
- ACTIONS(2149), 1,
+ [52362] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(947), 1,
+ STATE(945), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53180] = 3,
- ACTIONS(2149), 1,
+ [52373] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(949), 1,
+ STATE(933), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53191] = 3,
- ACTIONS(3337), 1,
- sym_identifier,
- ACTIONS(3339), 1,
- sym_jsx_identifier,
+ [52384] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(943), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53202] = 3,
- ACTIONS(2685), 1,
- anon_sym_LPAREN,
- STATE(1611), 1,
- sym_formal_parameters,
+ [52395] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(926), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53213] = 3,
- ACTIONS(3257), 1,
- anon_sym_LPAREN,
- STATE(48), 1,
- sym_parenthesized_expression,
+ [52406] = 3,
+ ACTIONS(2119), 1,
+ anon_sym_LBRACE,
+ STATE(928), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53224] = 3,
- ACTIONS(2149), 1,
+ [52417] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(950), 1,
+ STATE(932), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53235] = 3,
- ACTIONS(2685), 1,
+ [52428] = 3,
+ ACTIONS(2647), 1,
anon_sym_LPAREN,
- STATE(1503), 1,
+ STATE(1527), 1,
sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53246] = 3,
- ACTIONS(2497), 1,
- anon_sym_COLON,
- ACTIONS(3247), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [53257] = 3,
- ACTIONS(3251), 1,
+ [52439] = 3,
+ ACTIONS(3030), 1,
anon_sym_LBRACE,
- STATE(671), 1,
+ STATE(950), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53268] = 3,
- ACTIONS(2858), 1,
+ [52450] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(548), 1,
- sym_class_body,
+ STATE(653), 1,
+ sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53279] = 3,
- ACTIONS(3255), 1,
- anon_sym_LBRACE,
- STATE(552), 1,
- sym_statement_block,
+ [52461] = 3,
+ ACTIONS(3278), 1,
+ sym_identifier,
+ ACTIONS(3280), 1,
+ anon_sym_STAR,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53290] = 3,
- ACTIONS(3243), 1,
+ [52472] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(945), 1,
+ STATE(654), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53301] = 3,
- ACTIONS(2503), 1,
- anon_sym_DOT,
- ACTIONS(3247), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [53312] = 2,
+ [52483] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1563), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- ACTIONS(3175), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [53321] = 3,
- ACTIONS(2826), 1,
- anon_sym_in,
- ACTIONS(2828), 1,
- anon_sym_of,
+ [52494] = 3,
+ ACTIONS(2760), 1,
+ anon_sym_LBRACE,
+ STATE(655), 1,
+ sym_class_body,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53332] = 3,
- ACTIONS(3255), 1,
+ [52505] = 3,
+ ACTIONS(3192), 1,
anon_sym_LBRACE,
- STATE(563), 1,
+ STATE(656), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53343] = 3,
- ACTIONS(2149), 1,
+ [52516] = 3,
+ ACTIONS(2119), 1,
anon_sym_LBRACE,
- STATE(951), 1,
+ STATE(934), 1,
sym_statement_block,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53354] = 3,
- ACTIONS(2149), 1,
- anon_sym_LBRACE,
- STATE(952), 1,
- sym_statement_block,
+ [52527] = 3,
+ ACTIONS(2647), 1,
+ anon_sym_LPAREN,
+ STATE(1459), 1,
+ sym_formal_parameters,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53365] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(337), 1,
- sym_statement_block,
+ [52538] = 2,
+ ACTIONS(1805), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53376] = 3,
- ACTIONS(3341), 1,
+ [52546] = 2,
+ ACTIONS(3282), 1,
sym_identifier,
- ACTIONS(3343), 1,
- sym_private_property_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53387] = 3,
- ACTIONS(3243), 1,
- anon_sym_LBRACE,
- STATE(957), 1,
- sym_statement_block,
+ [52554] = 2,
+ ACTIONS(1809), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53398] = 3,
- ACTIONS(3285), 1,
- anon_sym_LBRACE,
- STATE(81), 1,
- sym_statement_block,
+ [52562] = 2,
+ ACTIONS(3284), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53409] = 2,
- ACTIONS(1784), 1,
- anon_sym_RPAREN,
+ [52570] = 2,
+ ACTIONS(3286), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53417] = 2,
- ACTIONS(3345), 1,
- sym_identifier,
+ [52578] = 2,
+ ACTIONS(3288), 1,
+ anon_sym_COLON,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53425] = 2,
- ACTIONS(3347), 1,
- anon_sym_as,
+ [52586] = 2,
+ ACTIONS(1819), 1,
+ anon_sym_SEMI,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53433] = 2,
- ACTIONS(3249), 1,
- anon_sym_GT,
+ [52594] = 3,
+ ACTIONS(3), 1,
+ sym_comment,
+ ACTIONS(5), 1,
+ sym_html_comment,
+ ACTIONS(3290), 1,
+ anon_sym_SLASH2,
+ [52604] = 2,
+ ACTIONS(3292), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53441] = 2,
- ACTIONS(1585), 1,
- anon_sym_in,
+ [52612] = 2,
+ ACTIONS(3090), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53449] = 2,
- ACTIONS(1846), 1,
+ [52620] = 2,
+ ACTIONS(3294), 1,
anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53457] = 2,
- ACTIONS(3349), 1,
- anon_sym_from,
+ [52628] = 2,
+ ACTIONS(3296), 1,
+ ts_builtin_sym_end,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53465] = 2,
- ACTIONS(1862), 1,
+ [52636] = 2,
+ ACTIONS(3298), 1,
anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53473] = 2,
- ACTIONS(3351), 1,
- anon_sym_EQ_GT,
+ [52644] = 2,
+ ACTIONS(3300), 1,
+ anon_sym_as,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53481] = 2,
- ACTIONS(3353), 1,
- anon_sym_EQ_GT,
+ [52652] = 2,
+ ACTIONS(3302), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53489] = 2,
- ACTIONS(3355), 1,
- anon_sym_from,
+ [52660] = 3,
+ ACTIONS(3), 1,
+ sym_comment,
+ ACTIONS(5), 1,
+ sym_html_comment,
+ ACTIONS(3304), 1,
+ anon_sym_SLASH2,
+ [52670] = 2,
+ ACTIONS(2109), 1,
+ anon_sym_LPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53497] = 2,
- ACTIONS(3357), 1,
- anon_sym_meta,
+ [52678] = 2,
+ ACTIONS(3230), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53505] = 2,
- ACTIONS(2764), 1,
- anon_sym_EQ,
+ [52686] = 2,
+ ACTIONS(3306), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53513] = 2,
- ACTIONS(3359), 1,
- anon_sym_EQ_GT,
+ [52694] = 2,
+ ACTIONS(3308), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53521] = 3,
+ [52702] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3361), 1,
- anon_sym_SLASH2,
- [53531] = 2,
- ACTIONS(3363), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [53539] = 3,
+ ACTIONS(3310), 1,
+ sym_regex_pattern,
+ [52712] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3365), 1,
+ ACTIONS(3312), 1,
anon_sym_SLASH2,
- [53549] = 2,
- ACTIONS(3367), 1,
- sym_identifier,
+ [52722] = 2,
+ ACTIONS(1562), 1,
+ anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53557] = 2,
- ACTIONS(1802), 1,
+ [52730] = 2,
+ ACTIONS(1831), 1,
anon_sym_SEMI,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53565] = 2,
- ACTIONS(3369), 1,
- ts_builtin_sym_end,
+ [52738] = 2,
+ ACTIONS(1813), 1,
+ anon_sym_SEMI,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53573] = 2,
- ACTIONS(3371), 1,
- sym_identifier,
+ [52746] = 2,
+ ACTIONS(3314), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53581] = 2,
- ACTIONS(3154), 1,
- anon_sym_RBRACE,
+ [52754] = 2,
+ ACTIONS(1773), 1,
+ anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53589] = 2,
- ACTIONS(3373), 1,
- anon_sym_EQ_GT,
+ [52762] = 2,
+ ACTIONS(1817), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53597] = 2,
- ACTIONS(1810), 1,
- anon_sym_SEMI,
+ [52770] = 2,
+ ACTIONS(3316), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53605] = 2,
- ACTIONS(1828), 1,
- anon_sym_SEMI,
+ [52778] = 2,
+ ACTIONS(3318), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53613] = 2,
- ACTIONS(3375), 1,
- anon_sym_EQ_GT,
+ [52786] = 2,
+ ACTIONS(1811), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53621] = 2,
- ACTIONS(3325), 1,
- anon_sym_from,
+ [52794] = 2,
+ ACTIONS(3078), 1,
+ anon_sym_RBRACE,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53629] = 2,
- ACTIONS(3357), 1,
- anon_sym_target,
+ [52802] = 2,
+ ACTIONS(1833), 1,
+ anon_sym_SEMI,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53637] = 2,
- ACTIONS(3377), 1,
- sym_identifier,
+ [52810] = 2,
+ ACTIONS(1632), 1,
+ anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53645] = 2,
- ACTIONS(3379), 1,
- anon_sym_meta,
+ [52818] = 2,
+ ACTIONS(2895), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53653] = 2,
- ACTIONS(3381), 1,
- anon_sym_from,
+ [52826] = 2,
+ ACTIONS(1787), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53661] = 2,
- ACTIONS(1840), 1,
+ [52834] = 2,
+ ACTIONS(1821), 1,
anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53669] = 2,
- ACTIONS(1754), 1,
- anon_sym_SEMI,
+ [52842] = 2,
+ ACTIONS(1839), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53677] = 2,
- ACTIONS(3383), 1,
- anon_sym_EQ,
+ [52850] = 2,
+ ACTIONS(3320), 1,
+ anon_sym_while,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53685] = 2,
- ACTIONS(3385), 1,
+ [52858] = 2,
+ ACTIONS(3322), 1,
anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53693] = 2,
- ACTIONS(3387), 1,
- anon_sym_from,
+ [52866] = 2,
+ ACTIONS(3324), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53701] = 2,
- ACTIONS(3389), 1,
+ [52874] = 2,
+ ACTIONS(1843), 1,
anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53709] = 2,
- ACTIONS(2139), 1,
- anon_sym_LPAREN,
+ [52882] = 2,
+ ACTIONS(1737), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53717] = 2,
- ACTIONS(3391), 1,
- anon_sym_from,
+ [52890] = 2,
+ ACTIONS(1835), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53725] = 2,
- ACTIONS(1643), 1,
- anon_sym_in,
+ [52898] = 2,
+ ACTIONS(3326), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53733] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
+ [52906] = 2,
+ ACTIONS(1783), 1,
+ anon_sym_RBRACK,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(3393), 1,
- anon_sym_SLASH2,
- [53743] = 2,
- ACTIONS(3395), 1,
- anon_sym_as,
+ sym_comment,
+ [52914] = 2,
+ ACTIONS(3328), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53751] = 2,
- ACTIONS(3397), 1,
+ [52922] = 2,
+ ACTIONS(3330), 1,
sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53759] = 2,
- ACTIONS(1854), 1,
- anon_sym_RBRACK,
+ [52930] = 2,
+ ACTIONS(2766), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53767] = 2,
- ACTIONS(3399), 1,
- anon_sym_from,
+ [52938] = 2,
+ ACTIONS(1785), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53775] = 2,
- ACTIONS(1778), 1,
- anon_sym_in,
+ [52946] = 2,
+ ACTIONS(3332), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53783] = 2,
- ACTIONS(1758), 1,
- anon_sym_RPAREN,
+ [52954] = 2,
+ ACTIONS(3334), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53791] = 2,
- ACTIONS(1860), 1,
- anon_sym_RBRACK,
+ [52962] = 2,
+ ACTIONS(3336), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53799] = 2,
- ACTIONS(1824), 1,
- anon_sym_RPAREN,
+ [52970] = 2,
+ ACTIONS(1807), 1,
+ anon_sym_COLON,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53807] = 2,
- ACTIONS(1760), 1,
+ [52978] = 2,
+ ACTIONS(1823), 1,
anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53815] = 2,
- ACTIONS(3401), 1,
- anon_sym_COLON,
+ [52986] = 2,
+ ACTIONS(1741), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53823] = 2,
- ACTIONS(1820), 1,
- anon_sym_RPAREN,
+ [52994] = 2,
+ ACTIONS(3338), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53831] = 2,
- ACTIONS(2937), 1,
- anon_sym_EQ,
+ [53002] = 2,
+ ACTIONS(1797), 1,
+ anon_sym_RBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53839] = 2,
- ACTIONS(3403), 1,
- anon_sym_function,
+ [53010] = 2,
+ ACTIONS(1825), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53847] = 2,
- ACTIONS(3405), 1,
- anon_sym_EQ_GT,
+ [53018] = 2,
+ ACTIONS(3340), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53855] = 2,
- ACTIONS(3407), 1,
- anon_sym_EQ_GT,
+ [53026] = 2,
+ ACTIONS(1799), 1,
+ anon_sym_RBRACE,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53863] = 2,
- ACTIONS(3409), 1,
- anon_sym_EQ_GT,
+ [53034] = 2,
+ ACTIONS(3342), 1,
+ anon_sym_as,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53871] = 2,
- ACTIONS(1814), 1,
- anon_sym_RPAREN,
+ [53042] = 2,
+ ACTIONS(3344), 1,
+ anon_sym_target,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53879] = 2,
- ACTIONS(3411), 1,
+ [53050] = 2,
+ ACTIONS(1827), 1,
anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53887] = 2,
- ACTIONS(3413), 1,
- sym_identifier,
+ [53058] = 2,
+ ACTIONS(3174), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53895] = 2,
- ACTIONS(1852), 1,
- anon_sym_COLON,
+ [53066] = 2,
+ ACTIONS(3346), 1,
+ anon_sym_function,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53903] = 2,
- ACTIONS(3415), 1,
- anon_sym_EQ,
+ [53074] = 2,
+ ACTIONS(1747), 1,
+ anon_sym_RPAREN,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53911] = 2,
- ACTIONS(3417), 1,
+ [53082] = 2,
+ ACTIONS(2275), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53919] = 2,
- ACTIONS(2371), 1,
- anon_sym_EQ_GT,
+ [53090] = 2,
+ ACTIONS(3348), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53927] = 2,
- ACTIONS(3247), 1,
- anon_sym_GT,
+ [53098] = 2,
+ ACTIONS(3350), 1,
+ sym_identifier,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53935] = 3,
- ACTIONS(3), 1,
+ [53106] = 2,
+ ACTIONS(3352), 1,
+ anon_sym_COLON,
+ ACTIONS(5), 2,
+ sym_html_comment,
sym_comment,
- ACTIONS(5), 1,
+ [53114] = 2,
+ ACTIONS(3344), 1,
+ anon_sym_meta,
+ ACTIONS(5), 2,
sym_html_comment,
- ACTIONS(3419), 1,
- sym_regex_pattern,
- [53945] = 2,
- ACTIONS(3421), 1,
- sym_identifier,
+ sym_comment,
+ [53122] = 2,
+ ACTIONS(1837), 1,
+ anon_sym_RBRACE,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53953] = 3,
+ [53130] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3423), 1,
+ ACTIONS(3354), 1,
sym_regex_pattern,
- [53963] = 2,
- ACTIONS(3425), 1,
- anon_sym_COLON,
+ [53140] = 2,
+ ACTIONS(3356), 1,
+ anon_sym_EQ_GT,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [53148] = 2,
+ ACTIONS(1829), 1,
+ anon_sym_RBRACE,
+ ACTIONS(5), 2,
+ sym_html_comment,
+ sym_comment,
+ [53156] = 2,
+ ACTIONS(3358), 1,
+ anon_sym_meta,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53971] = 3,
+ [53164] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3427), 1,
+ ACTIONS(3360), 1,
sym_regex_pattern,
- [53981] = 2,
- ACTIONS(1856), 1,
- anon_sym_RPAREN,
+ [53174] = 2,
+ ACTIONS(3362), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53989] = 2,
- ACTIONS(1834), 1,
- anon_sym_RBRACE,
+ [53182] = 2,
+ ACTIONS(1803), 1,
+ anon_sym_RBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [53997] = 2,
- ACTIONS(3082), 1,
- anon_sym_GT,
+ [53190] = 2,
+ ACTIONS(1793), 1,
+ anon_sym_RBRACK,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54005] = 2,
- ACTIONS(1812), 1,
- anon_sym_RBRACK,
+ [53198] = 2,
+ ACTIONS(3364), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54013] = 2,
- ACTIONS(3429), 1,
- sym_identifier,
+ [53206] = 2,
+ ACTIONS(3366), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54021] = 3,
+ [53214] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3431), 1,
+ ACTIONS(3368), 1,
sym_regex_pattern,
- [54031] = 2,
- ACTIONS(1830), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54039] = 2,
- ACTIONS(1685), 1,
+ [53224] = 2,
+ ACTIONS(1871), 1,
anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54047] = 2,
- ACTIONS(1836), 1,
- anon_sym_RBRACE,
+ [53232] = 2,
+ ACTIONS(1674), 1,
+ anon_sym_in,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54055] = 2,
- ACTIONS(3433), 1,
+ [53240] = 2,
+ ACTIONS(3370), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54063] = 2,
- ACTIONS(1832), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54071] = 2,
- ACTIONS(3435), 1,
+ [53248] = 2,
+ ACTIONS(3372), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54079] = 2,
- ACTIONS(1808), 1,
- anon_sym_RPAREN,
+ [53256] = 2,
+ ACTIONS(3374), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54087] = 2,
- ACTIONS(3437), 1,
+ [53264] = 2,
+ ACTIONS(3376), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54095] = 2,
- ACTIONS(1890), 1,
- anon_sym_in,
+ [53272] = 2,
+ ACTIONS(3378), 1,
+ anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54103] = 2,
- ACTIONS(1798), 1,
- anon_sym_RPAREN,
+ [53280] = 2,
+ ACTIONS(3144), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54111] = 2,
- ACTIONS(3439), 1,
+ [53288] = 2,
+ ACTIONS(3380), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54119] = 2,
- ACTIONS(3441), 1,
- anon_sym_EQ_GT,
+ [53296] = 2,
+ ACTIONS(3382), 1,
+ anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54127] = 2,
- ACTIONS(3443), 1,
+ [53304] = 2,
+ ACTIONS(3384), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54135] = 2,
- ACTIONS(3445), 1,
+ [53312] = 2,
+ ACTIONS(3386), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54143] = 2,
- ACTIONS(3379), 1,
- anon_sym_target,
+ [53320] = 2,
+ ACTIONS(3068), 1,
+ anon_sym_RBRACE,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54151] = 2,
- ACTIONS(3447), 1,
- anon_sym_RPAREN,
+ [53328] = 2,
+ ACTIONS(3358), 1,
+ anon_sym_target,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54159] = 2,
- ACTIONS(1822), 1,
- anon_sym_RPAREN,
+ [53336] = 2,
+ ACTIONS(3234), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54167] = 3,
+ [53344] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5), 1,
sym_html_comment,
- ACTIONS(3449), 1,
+ ACTIONS(3388), 1,
anon_sym_SLASH2,
- [54177] = 2,
- ACTIONS(3451), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54185] = 2,
- ACTIONS(3453), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54193] = 2,
- ACTIONS(3062), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54201] = 2,
- ACTIONS(3455), 1,
- anon_sym_while,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54209] = 2,
- ACTIONS(1858), 1,
- anon_sym_RPAREN,
+ [53354] = 2,
+ ACTIONS(3390), 1,
+ anon_sym_from,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54217] = 2,
- ACTIONS(3287), 1,
+ [53362] = 2,
+ ACTIONS(3392), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54225] = 2,
- ACTIONS(1826), 1,
+ [53370] = 2,
+ ACTIONS(1789), 1,
anon_sym_SEMI,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54233] = 2,
- ACTIONS(3113), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54241] = 2,
- ACTIONS(3457), 1,
+ [53378] = 2,
+ ACTIONS(3394), 1,
anon_sym_EQ_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54249] = 2,
- ACTIONS(1844), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [54257] = 2,
- ACTIONS(1864), 1,
+ [53386] = 2,
+ ACTIONS(1845), 1,
anon_sym_SEMI,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54265] = 2,
- ACTIONS(3459), 1,
+ [53394] = 2,
+ ACTIONS(3396), 1,
anon_sym_EQ,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
- [54273] = 2,
- ACTIONS(1850), 1,
- anon_sym_RBRACE,
+ [53402] = 2,
+ ACTIONS(3103), 1,
+ anon_sym_GT,
ACTIONS(5), 2,
sym_html_comment,
sym_comment,
};
static const uint32_t ts_small_parse_table_map[] = {
- [SMALL_STATE(330)] = 0,
- [SMALL_STATE(331)] = 89,
- [SMALL_STATE(332)] = 164,
- [SMALL_STATE(333)] = 255,
- [SMALL_STATE(334)] = 327,
- [SMALL_STATE(335)] = 397,
- [SMALL_STATE(336)] = 469,
- [SMALL_STATE(337)] = 539,
- [SMALL_STATE(338)] = 609,
- [SMALL_STATE(339)] = 681,
- [SMALL_STATE(340)] = 753,
- [SMALL_STATE(341)] = 825,
- [SMALL_STATE(342)] = 897,
- [SMALL_STATE(343)] = 969,
- [SMALL_STATE(344)] = 1041,
- [SMALL_STATE(345)] = 1131,
- [SMALL_STATE(346)] = 1203,
- [SMALL_STATE(347)] = 1273,
- [SMALL_STATE(348)] = 1343,
- [SMALL_STATE(349)] = 1413,
- [SMALL_STATE(350)] = 1483,
- [SMALL_STATE(351)] = 1553,
- [SMALL_STATE(352)] = 1627,
- [SMALL_STATE(353)] = 1713,
- [SMALL_STATE(354)] = 1785,
- [SMALL_STATE(355)] = 1857,
- [SMALL_STATE(356)] = 1943,
- [SMALL_STATE(357)] = 2029,
- [SMALL_STATE(358)] = 2098,
- [SMALL_STATE(359)] = 2183,
- [SMALL_STATE(360)] = 2252,
- [SMALL_STATE(361)] = 2321,
- [SMALL_STATE(362)] = 2390,
- [SMALL_STATE(363)] = 2459,
- [SMALL_STATE(364)] = 2528,
- [SMALL_STATE(365)] = 2597,
- [SMALL_STATE(366)] = 2666,
- [SMALL_STATE(367)] = 2735,
- [SMALL_STATE(368)] = 2804,
- [SMALL_STATE(369)] = 2873,
- [SMALL_STATE(370)] = 2942,
- [SMALL_STATE(371)] = 3011,
- [SMALL_STATE(372)] = 3080,
- [SMALL_STATE(373)] = 3149,
- [SMALL_STATE(374)] = 3218,
- [SMALL_STATE(375)] = 3287,
- [SMALL_STATE(376)] = 3356,
- [SMALL_STATE(377)] = 3425,
- [SMALL_STATE(378)] = 3494,
- [SMALL_STATE(379)] = 3563,
- [SMALL_STATE(380)] = 3632,
- [SMALL_STATE(381)] = 3701,
- [SMALL_STATE(382)] = 3770,
- [SMALL_STATE(383)] = 3839,
- [SMALL_STATE(384)] = 3908,
- [SMALL_STATE(385)] = 3977,
- [SMALL_STATE(386)] = 4046,
- [SMALL_STATE(387)] = 4115,
- [SMALL_STATE(388)] = 4184,
- [SMALL_STATE(389)] = 4253,
- [SMALL_STATE(390)] = 4322,
- [SMALL_STATE(391)] = 4391,
- [SMALL_STATE(392)] = 4460,
- [SMALL_STATE(393)] = 4529,
- [SMALL_STATE(394)] = 4598,
- [SMALL_STATE(395)] = 4667,
- [SMALL_STATE(396)] = 4736,
- [SMALL_STATE(397)] = 4805,
- [SMALL_STATE(398)] = 4874,
- [SMALL_STATE(399)] = 4943,
- [SMALL_STATE(400)] = 5012,
- [SMALL_STATE(401)] = 5081,
- [SMALL_STATE(402)] = 5168,
- [SMALL_STATE(403)] = 5237,
- [SMALL_STATE(404)] = 5306,
- [SMALL_STATE(405)] = 5375,
- [SMALL_STATE(406)] = 5444,
- [SMALL_STATE(407)] = 5513,
- [SMALL_STATE(408)] = 5582,
- [SMALL_STATE(409)] = 5651,
- [SMALL_STATE(410)] = 5720,
- [SMALL_STATE(411)] = 5789,
- [SMALL_STATE(412)] = 5858,
- [SMALL_STATE(413)] = 5947,
- [SMALL_STATE(414)] = 6016,
- [SMALL_STATE(415)] = 6085,
- [SMALL_STATE(416)] = 6154,
- [SMALL_STATE(417)] = 6223,
- [SMALL_STATE(418)] = 6292,
- [SMALL_STATE(419)] = 6361,
- [SMALL_STATE(420)] = 6430,
- [SMALL_STATE(421)] = 6517,
- [SMALL_STATE(422)] = 6586,
- [SMALL_STATE(423)] = 6655,
- [SMALL_STATE(424)] = 6724,
- [SMALL_STATE(425)] = 6793,
- [SMALL_STATE(426)] = 6878,
- [SMALL_STATE(427)] = 6947,
- [SMALL_STATE(428)] = 7035,
- [SMALL_STATE(429)] = 7118,
- [SMALL_STATE(430)] = 7184,
- [SMALL_STATE(431)] = 7254,
- [SMALL_STATE(432)] = 7320,
- [SMALL_STATE(433)] = 7402,
- [SMALL_STATE(434)] = 7484,
- [SMALL_STATE(435)] = 7566,
- [SMALL_STATE(436)] = 7632,
- [SMALL_STATE(437)] = 7698,
- [SMALL_STATE(438)] = 7764,
- [SMALL_STATE(439)] = 7830,
- [SMALL_STATE(440)] = 7896,
- [SMALL_STATE(441)] = 7967,
- [SMALL_STATE(442)] = 8038,
- [SMALL_STATE(443)] = 8109,
- [SMALL_STATE(444)] = 8180,
- [SMALL_STATE(445)] = 8263,
- [SMALL_STATE(446)] = 8331,
- [SMALL_STATE(447)] = 8395,
- [SMALL_STATE(448)] = 8459,
- [SMALL_STATE(449)] = 8523,
- [SMALL_STATE(450)] = 8587,
- [SMALL_STATE(451)] = 8651,
- [SMALL_STATE(452)] = 8715,
- [SMALL_STATE(453)] = 8779,
- [SMALL_STATE(454)] = 8843,
- [SMALL_STATE(455)] = 8907,
- [SMALL_STATE(456)] = 8976,
- [SMALL_STATE(457)] = 9039,
- [SMALL_STATE(458)] = 9102,
- [SMALL_STATE(459)] = 9173,
- [SMALL_STATE(460)] = 9236,
- [SMALL_STATE(461)] = 9307,
- [SMALL_STATE(462)] = 9376,
- [SMALL_STATE(463)] = 9447,
- [SMALL_STATE(464)] = 9510,
- [SMALL_STATE(465)] = 9581,
- [SMALL_STATE(466)] = 9650,
- [SMALL_STATE(467)] = 9713,
- [SMALL_STATE(468)] = 9782,
- [SMALL_STATE(469)] = 9851,
- [SMALL_STATE(470)] = 9922,
- [SMALL_STATE(471)] = 9985,
- [SMALL_STATE(472)] = 10052,
- [SMALL_STATE(473)] = 10123,
- [SMALL_STATE(474)] = 10192,
- [SMALL_STATE(475)] = 10263,
- [SMALL_STATE(476)] = 10334,
- [SMALL_STATE(477)] = 10403,
- [SMALL_STATE(478)] = 10466,
- [SMALL_STATE(479)] = 10537,
- [SMALL_STATE(480)] = 10608,
- [SMALL_STATE(481)] = 10677,
- [SMALL_STATE(482)] = 10747,
- [SMALL_STATE(483)] = 10817,
- [SMALL_STATE(484)] = 10885,
- [SMALL_STATE(485)] = 10951,
- [SMALL_STATE(486)] = 11019,
- [SMALL_STATE(487)] = 11085,
- [SMALL_STATE(488)] = 11153,
- [SMALL_STATE(489)] = 11225,
- [SMALL_STATE(490)] = 11297,
- [SMALL_STATE(491)] = 11368,
- [SMALL_STATE(492)] = 11435,
- [SMALL_STATE(493)] = 11502,
- [SMALL_STATE(494)] = 11569,
- [SMALL_STATE(495)] = 11640,
- [SMALL_STATE(496)] = 11709,
- [SMALL_STATE(497)] = 11777,
- [SMALL_STATE(498)] = 11847,
- [SMALL_STATE(499)] = 11913,
- [SMALL_STATE(500)] = 11983,
- [SMALL_STATE(501)] = 12049,
- [SMALL_STATE(502)] = 12115,
- [SMALL_STATE(503)] = 12181,
- [SMALL_STATE(504)] = 12248,
- [SMALL_STATE(505)] = 12311,
- [SMALL_STATE(506)] = 12367,
- [SMALL_STATE(507)] = 12433,
- [SMALL_STATE(508)] = 12493,
- [SMALL_STATE(509)] = 12554,
- [SMALL_STATE(510)] = 12607,
- [SMALL_STATE(511)] = 12660,
- [SMALL_STATE(512)] = 12723,
- [SMALL_STATE(513)] = 12786,
- [SMALL_STATE(514)] = 12839,
- [SMALL_STATE(515)] = 12894,
- [SMALL_STATE(516)] = 12955,
- [SMALL_STATE(517)] = 13005,
- [SMALL_STATE(518)] = 13055,
- [SMALL_STATE(519)] = 13105,
- [SMALL_STATE(520)] = 13155,
- [SMALL_STATE(521)] = 13205,
- [SMALL_STATE(522)] = 13255,
- [SMALL_STATE(523)] = 13305,
- [SMALL_STATE(524)] = 13359,
- [SMALL_STATE(525)] = 13409,
- [SMALL_STATE(526)] = 13459,
- [SMALL_STATE(527)] = 13509,
- [SMALL_STATE(528)] = 13563,
- [SMALL_STATE(529)] = 13613,
- [SMALL_STATE(530)] = 13663,
- [SMALL_STATE(531)] = 13713,
- [SMALL_STATE(532)] = 13763,
- [SMALL_STATE(533)] = 13813,
- [SMALL_STATE(534)] = 13863,
- [SMALL_STATE(535)] = 13913,
- [SMALL_STATE(536)] = 13963,
- [SMALL_STATE(537)] = 14013,
- [SMALL_STATE(538)] = 14063,
- [SMALL_STATE(539)] = 14113,
- [SMALL_STATE(540)] = 14163,
- [SMALL_STATE(541)] = 14213,
- [SMALL_STATE(542)] = 14263,
- [SMALL_STATE(543)] = 14313,
- [SMALL_STATE(544)] = 14363,
- [SMALL_STATE(545)] = 14413,
- [SMALL_STATE(546)] = 14463,
- [SMALL_STATE(547)] = 14513,
- [SMALL_STATE(548)] = 14563,
- [SMALL_STATE(549)] = 14613,
- [SMALL_STATE(550)] = 14663,
- [SMALL_STATE(551)] = 14713,
- [SMALL_STATE(552)] = 14763,
- [SMALL_STATE(553)] = 14813,
- [SMALL_STATE(554)] = 14863,
- [SMALL_STATE(555)] = 14915,
- [SMALL_STATE(556)] = 14965,
- [SMALL_STATE(557)] = 15015,
- [SMALL_STATE(558)] = 15065,
- [SMALL_STATE(559)] = 15115,
- [SMALL_STATE(560)] = 15165,
- [SMALL_STATE(561)] = 15215,
- [SMALL_STATE(562)] = 15265,
- [SMALL_STATE(563)] = 15315,
- [SMALL_STATE(564)] = 15365,
- [SMALL_STATE(565)] = 15415,
- [SMALL_STATE(566)] = 15465,
- [SMALL_STATE(567)] = 15515,
- [SMALL_STATE(568)] = 15565,
- [SMALL_STATE(569)] = 15615,
- [SMALL_STATE(570)] = 15665,
- [SMALL_STATE(571)] = 15715,
- [SMALL_STATE(572)] = 15765,
- [SMALL_STATE(573)] = 15815,
- [SMALL_STATE(574)] = 15865,
- [SMALL_STATE(575)] = 15919,
- [SMALL_STATE(576)] = 15969,
- [SMALL_STATE(577)] = 16019,
- [SMALL_STATE(578)] = 16069,
- [SMALL_STATE(579)] = 16120,
- [SMALL_STATE(580)] = 16213,
- [SMALL_STATE(581)] = 16262,
- [SMALL_STATE(582)] = 16355,
- [SMALL_STATE(583)] = 16448,
- [SMALL_STATE(584)] = 16497,
- [SMALL_STATE(585)] = 16548,
- [SMALL_STATE(586)] = 16599,
- [SMALL_STATE(587)] = 16692,
- [SMALL_STATE(588)] = 16785,
- [SMALL_STATE(589)] = 16878,
- [SMALL_STATE(590)] = 16951,
- [SMALL_STATE(591)] = 17014,
- [SMALL_STATE(592)] = 17099,
- [SMALL_STATE(593)] = 17186,
- [SMALL_STATE(594)] = 17255,
- [SMALL_STATE(595)] = 17336,
- [SMALL_STATE(596)] = 17419,
- [SMALL_STATE(597)] = 17486,
- [SMALL_STATE(598)] = 17549,
- [SMALL_STATE(599)] = 17626,
- [SMALL_STATE(600)] = 17715,
- [SMALL_STATE(601)] = 17808,
- [SMALL_STATE(602)] = 17901,
- [SMALL_STATE(603)] = 17950,
- [SMALL_STATE(604)] = 18013,
- [SMALL_STATE(605)] = 18070,
- [SMALL_STATE(606)] = 18163,
- [SMALL_STATE(607)] = 18212,
- [SMALL_STATE(608)] = 18305,
- [SMALL_STATE(609)] = 18398,
- [SMALL_STATE(610)] = 18491,
- [SMALL_STATE(611)] = 18542,
- [SMALL_STATE(612)] = 18593,
- [SMALL_STATE(613)] = 18644,
- [SMALL_STATE(614)] = 18729,
- [SMALL_STATE(615)] = 18777,
- [SMALL_STATE(616)] = 18829,
- [SMALL_STATE(617)] = 18879,
- [SMALL_STATE(618)] = 18939,
- [SMALL_STATE(619)] = 18997,
- [SMALL_STATE(620)] = 19055,
- [SMALL_STATE(621)] = 19107,
- [SMALL_STATE(622)] = 19199,
- [SMALL_STATE(623)] = 19247,
- [SMALL_STATE(624)] = 19297,
- [SMALL_STATE(625)] = 19351,
- [SMALL_STATE(626)] = 19401,
- [SMALL_STATE(627)] = 19461,
- [SMALL_STATE(628)] = 19511,
- [SMALL_STATE(629)] = 19558,
- [SMALL_STATE(630)] = 19605,
- [SMALL_STATE(631)] = 19686,
- [SMALL_STATE(632)] = 19769,
- [SMALL_STATE(633)] = 19818,
- [SMALL_STATE(634)] = 19869,
- [SMALL_STATE(635)] = 19916,
- [SMALL_STATE(636)] = 19967,
- [SMALL_STATE(637)] = 20032,
- [SMALL_STATE(638)] = 20079,
- [SMALL_STATE(639)] = 20140,
- [SMALL_STATE(640)] = 20187,
- [SMALL_STATE(641)] = 20262,
- [SMALL_STATE(642)] = 20349,
- [SMALL_STATE(643)] = 20396,
- [SMALL_STATE(644)] = 20443,
- [SMALL_STATE(645)] = 20534,
- [SMALL_STATE(646)] = 20595,
- [SMALL_STATE(647)] = 20642,
- [SMALL_STATE(648)] = 20689,
- [SMALL_STATE(649)] = 20736,
- [SMALL_STATE(650)] = 20783,
- [SMALL_STATE(651)] = 20830,
- [SMALL_STATE(652)] = 20877,
- [SMALL_STATE(653)] = 20924,
- [SMALL_STATE(654)] = 20971,
- [SMALL_STATE(655)] = 21018,
- [SMALL_STATE(656)] = 21065,
- [SMALL_STATE(657)] = 21112,
- [SMALL_STATE(658)] = 21203,
- [SMALL_STATE(659)] = 21250,
- [SMALL_STATE(660)] = 21297,
- [SMALL_STATE(661)] = 21344,
- [SMALL_STATE(662)] = 21395,
- [SMALL_STATE(663)] = 21442,
- [SMALL_STATE(664)] = 21533,
- [SMALL_STATE(665)] = 21580,
- [SMALL_STATE(666)] = 21663,
- [SMALL_STATE(667)] = 21754,
- [SMALL_STATE(668)] = 21839,
- [SMALL_STATE(669)] = 21886,
- [SMALL_STATE(670)] = 21937,
- [SMALL_STATE(671)] = 22028,
- [SMALL_STATE(672)] = 22075,
- [SMALL_STATE(673)] = 22122,
- [SMALL_STATE(674)] = 22213,
- [SMALL_STATE(675)] = 22304,
- [SMALL_STATE(676)] = 22395,
- [SMALL_STATE(677)] = 22446,
- [SMALL_STATE(678)] = 22493,
- [SMALL_STATE(679)] = 22540,
- [SMALL_STATE(680)] = 22631,
- [SMALL_STATE(681)] = 22678,
- [SMALL_STATE(682)] = 22725,
- [SMALL_STATE(683)] = 22816,
- [SMALL_STATE(684)] = 22907,
- [SMALL_STATE(685)] = 22978,
- [SMALL_STATE(686)] = 23025,
- [SMALL_STATE(687)] = 23076,
- [SMALL_STATE(688)] = 23159,
- [SMALL_STATE(689)] = 23244,
- [SMALL_STATE(690)] = 23311,
- [SMALL_STATE(691)] = 23390,
- [SMALL_STATE(692)] = 23471,
- [SMALL_STATE(693)] = 23554,
- [SMALL_STATE(694)] = 23619,
- [SMALL_STATE(695)] = 23680,
- [SMALL_STATE(696)] = 23755,
- [SMALL_STATE(697)] = 23842,
- [SMALL_STATE(698)] = 23933,
- [SMALL_STATE(699)] = 24024,
- [SMALL_STATE(700)] = 24075,
- [SMALL_STATE(701)] = 24166,
- [SMALL_STATE(702)] = 24257,
- [SMALL_STATE(703)] = 24348,
- [SMALL_STATE(704)] = 24399,
- [SMALL_STATE(705)] = 24490,
- [SMALL_STATE(706)] = 24581,
- [SMALL_STATE(707)] = 24628,
- [SMALL_STATE(708)] = 24679,
- [SMALL_STATE(709)] = 24726,
- [SMALL_STATE(710)] = 24773,
- [SMALL_STATE(711)] = 24820,
- [SMALL_STATE(712)] = 24871,
- [SMALL_STATE(713)] = 24918,
- [SMALL_STATE(714)] = 24965,
- [SMALL_STATE(715)] = 25032,
- [SMALL_STATE(716)] = 25079,
- [SMALL_STATE(717)] = 25128,
- [SMALL_STATE(718)] = 25175,
- [SMALL_STATE(719)] = 25266,
- [SMALL_STATE(720)] = 25357,
- [SMALL_STATE(721)] = 25404,
- [SMALL_STATE(722)] = 25451,
- [SMALL_STATE(723)] = 25498,
- [SMALL_STATE(724)] = 25577,
- [SMALL_STATE(725)] = 25624,
- [SMALL_STATE(726)] = 25673,
- [SMALL_STATE(727)] = 25720,
- [SMALL_STATE(728)] = 25769,
- [SMALL_STATE(729)] = 25816,
- [SMALL_STATE(730)] = 25867,
- [SMALL_STATE(731)] = 25914,
- [SMALL_STATE(732)] = 25965,
- [SMALL_STATE(733)] = 26016,
- [SMALL_STATE(734)] = 26067,
- [SMALL_STATE(735)] = 26114,
- [SMALL_STATE(736)] = 26205,
- [SMALL_STATE(737)] = 26252,
- [SMALL_STATE(738)] = 26343,
- [SMALL_STATE(739)] = 26390,
- [SMALL_STATE(740)] = 26461,
- [SMALL_STATE(741)] = 26552,
- [SMALL_STATE(742)] = 26599,
- [SMALL_STATE(743)] = 26646,
- [SMALL_STATE(744)] = 26737,
- [SMALL_STATE(745)] = 26784,
- [SMALL_STATE(746)] = 26845,
- [SMALL_STATE(747)] = 26939,
- [SMALL_STATE(748)] = 26989,
- [SMALL_STATE(749)] = 27083,
- [SMALL_STATE(750)] = 27175,
- [SMALL_STATE(751)] = 27269,
- [SMALL_STATE(752)] = 27363,
- [SMALL_STATE(753)] = 27413,
- [SMALL_STATE(754)] = 27507,
- [SMALL_STATE(755)] = 27597,
- [SMALL_STATE(756)] = 27691,
- [SMALL_STATE(757)] = 27741,
- [SMALL_STATE(758)] = 27831,
- [SMALL_STATE(759)] = 27883,
- [SMALL_STATE(760)] = 27935,
- [SMALL_STATE(761)] = 27987,
- [SMALL_STATE(762)] = 28039,
- [SMALL_STATE(763)] = 28132,
- [SMALL_STATE(764)] = 28225,
- [SMALL_STATE(765)] = 28318,
- [SMALL_STATE(766)] = 28411,
- [SMALL_STATE(767)] = 28490,
- [SMALL_STATE(768)] = 28583,
- [SMALL_STATE(769)] = 28668,
- [SMALL_STATE(770)] = 28757,
- [SMALL_STATE(771)] = 28846,
- [SMALL_STATE(772)] = 28935,
- [SMALL_STATE(773)] = 29028,
- [SMALL_STATE(774)] = 29117,
- [SMALL_STATE(775)] = 29206,
- [SMALL_STATE(776)] = 29295,
- [SMALL_STATE(777)] = 29388,
- [SMALL_STATE(778)] = 29481,
- [SMALL_STATE(779)] = 29570,
- [SMALL_STATE(780)] = 29659,
- [SMALL_STATE(781)] = 29710,
- [SMALL_STATE(782)] = 29803,
- [SMALL_STATE(783)] = 29892,
- [SMALL_STATE(784)] = 29985,
- [SMALL_STATE(785)] = 30078,
- [SMALL_STATE(786)] = 30167,
- [SMALL_STATE(787)] = 30248,
- [SMALL_STATE(788)] = 30341,
- [SMALL_STATE(789)] = 30434,
- [SMALL_STATE(790)] = 30527,
- [SMALL_STATE(791)] = 30620,
- [SMALL_STATE(792)] = 30713,
- [SMALL_STATE(793)] = 30806,
- [SMALL_STATE(794)] = 30899,
- [SMALL_STATE(795)] = 30992,
- [SMALL_STATE(796)] = 31085,
- [SMALL_STATE(797)] = 31178,
- [SMALL_STATE(798)] = 31267,
- [SMALL_STATE(799)] = 31356,
- [SMALL_STATE(800)] = 31449,
- [SMALL_STATE(801)] = 31542,
- [SMALL_STATE(802)] = 31605,
- [SMALL_STATE(803)] = 31698,
- [SMALL_STATE(804)] = 31791,
- [SMALL_STATE(805)] = 31884,
- [SMALL_STATE(806)] = 31953,
- [SMALL_STATE(807)] = 32012,
- [SMALL_STATE(808)] = 32071,
- [SMALL_STATE(809)] = 32144,
- [SMALL_STATE(810)] = 32237,
- [SMALL_STATE(811)] = 32318,
- [SMALL_STATE(812)] = 32395,
- [SMALL_STATE(813)] = 32488,
- [SMALL_STATE(814)] = 32581,
- [SMALL_STATE(815)] = 32632,
- [SMALL_STATE(816)] = 32725,
- [SMALL_STATE(817)] = 32776,
- [SMALL_STATE(818)] = 32859,
- [SMALL_STATE(819)] = 32948,
- [SMALL_STATE(820)] = 32999,
- [SMALL_STATE(821)] = 33092,
- [SMALL_STATE(822)] = 33185,
- [SMALL_STATE(823)] = 33278,
- [SMALL_STATE(824)] = 33371,
- [SMALL_STATE(825)] = 33460,
- [SMALL_STATE(826)] = 33553,
- [SMALL_STATE(827)] = 33618,
- [SMALL_STATE(828)] = 33711,
- [SMALL_STATE(829)] = 33804,
- [SMALL_STATE(830)] = 33897,
- [SMALL_STATE(831)] = 33986,
- [SMALL_STATE(832)] = 34074,
- [SMALL_STATE(833)] = 34160,
- [SMALL_STATE(834)] = 34248,
- [SMALL_STATE(835)] = 34336,
- [SMALL_STATE(836)] = 34382,
- [SMALL_STATE(837)] = 34468,
- [SMALL_STATE(838)] = 34556,
- [SMALL_STATE(839)] = 34646,
- [SMALL_STATE(840)] = 34734,
- [SMALL_STATE(841)] = 34820,
- [SMALL_STATE(842)] = 34908,
- [SMALL_STATE(843)] = 34994,
- [SMALL_STATE(844)] = 35080,
- [SMALL_STATE(845)] = 35166,
- [SMALL_STATE(846)] = 35216,
- [SMALL_STATE(847)] = 35304,
- [SMALL_STATE(848)] = 35350,
- [SMALL_STATE(849)] = 35438,
- [SMALL_STATE(850)] = 35526,
- [SMALL_STATE(851)] = 35614,
- [SMALL_STATE(852)] = 35682,
- [SMALL_STATE(853)] = 35740,
- [SMALL_STATE(854)] = 35820,
- [SMALL_STATE(855)] = 35902,
- [SMALL_STATE(856)] = 35966,
- [SMALL_STATE(857)] = 36042,
- [SMALL_STATE(858)] = 36120,
- [SMALL_STATE(859)] = 36200,
- [SMALL_STATE(860)] = 36262,
- [SMALL_STATE(861)] = 36320,
- [SMALL_STATE(862)] = 36392,
- [SMALL_STATE(863)] = 36476,
- [SMALL_STATE(864)] = 36564,
- [SMALL_STATE(865)] = 36652,
- [SMALL_STATE(866)] = 36740,
- [SMALL_STATE(867)] = 36828,
- [SMALL_STATE(868)] = 36916,
- [SMALL_STATE(869)] = 37004,
- [SMALL_STATE(870)] = 37091,
- [SMALL_STATE(871)] = 37178,
- [SMALL_STATE(872)] = 37265,
- [SMALL_STATE(873)] = 37354,
- [SMALL_STATE(874)] = 37441,
- [SMALL_STATE(875)] = 37528,
- [SMALL_STATE(876)] = 37615,
- [SMALL_STATE(877)] = 37702,
- [SMALL_STATE(878)] = 37789,
- [SMALL_STATE(879)] = 37867,
- [SMALL_STATE(880)] = 37951,
- [SMALL_STATE(881)] = 38035,
- [SMALL_STATE(882)] = 38112,
- [SMALL_STATE(883)] = 38189,
- [SMALL_STATE(884)] = 38266,
- [SMALL_STATE(885)] = 38343,
- [SMALL_STATE(886)] = 38420,
- [SMALL_STATE(887)] = 38497,
- [SMALL_STATE(888)] = 38574,
- [SMALL_STATE(889)] = 38651,
- [SMALL_STATE(890)] = 38728,
- [SMALL_STATE(891)] = 38798,
- [SMALL_STATE(892)] = 38863,
- [SMALL_STATE(893)] = 38920,
- [SMALL_STATE(894)] = 38977,
- [SMALL_STATE(895)] = 39029,
- [SMALL_STATE(896)] = 39085,
- [SMALL_STATE(897)] = 39143,
- [SMALL_STATE(898)] = 39199,
- [SMALL_STATE(899)] = 39257,
- [SMALL_STATE(900)] = 39315,
- [SMALL_STATE(901)] = 39371,
- [SMALL_STATE(902)] = 39427,
- [SMALL_STATE(903)] = 39485,
- [SMALL_STATE(904)] = 39541,
- [SMALL_STATE(905)] = 39599,
- [SMALL_STATE(906)] = 39657,
- [SMALL_STATE(907)] = 39713,
- [SMALL_STATE(908)] = 39766,
- [SMALL_STATE(909)] = 39817,
- [SMALL_STATE(910)] = 39868,
- [SMALL_STATE(911)] = 39919,
- [SMALL_STATE(912)] = 39970,
- [SMALL_STATE(913)] = 40021,
- [SMALL_STATE(914)] = 40072,
- [SMALL_STATE(915)] = 40120,
- [SMALL_STATE(916)] = 40180,
- [SMALL_STATE(917)] = 40230,
- [SMALL_STATE(918)] = 40280,
- [SMALL_STATE(919)] = 40332,
- [SMALL_STATE(920)] = 40377,
- [SMALL_STATE(921)] = 40422,
- [SMALL_STATE(922)] = 40467,
- [SMALL_STATE(923)] = 40514,
- [SMALL_STATE(924)] = 40559,
- [SMALL_STATE(925)] = 40602,
- [SMALL_STATE(926)] = 40645,
- [SMALL_STATE(927)] = 40700,
- [SMALL_STATE(928)] = 40747,
- [SMALL_STATE(929)] = 40802,
- [SMALL_STATE(930)] = 40845,
- [SMALL_STATE(931)] = 40873,
- [SMALL_STATE(932)] = 40901,
- [SMALL_STATE(933)] = 40929,
- [SMALL_STATE(934)] = 40967,
- [SMALL_STATE(935)] = 41005,
- [SMALL_STATE(936)] = 41033,
- [SMALL_STATE(937)] = 41067,
- [SMALL_STATE(938)] = 41095,
- [SMALL_STATE(939)] = 41123,
- [SMALL_STATE(940)] = 41151,
- [SMALL_STATE(941)] = 41181,
- [SMALL_STATE(942)] = 41209,
- [SMALL_STATE(943)] = 41237,
- [SMALL_STATE(944)] = 41277,
- [SMALL_STATE(945)] = 41305,
- [SMALL_STATE(946)] = 41333,
- [SMALL_STATE(947)] = 41363,
- [SMALL_STATE(948)] = 41391,
- [SMALL_STATE(949)] = 41419,
- [SMALL_STATE(950)] = 41447,
- [SMALL_STATE(951)] = 41475,
- [SMALL_STATE(952)] = 41503,
- [SMALL_STATE(953)] = 41531,
- [SMALL_STATE(954)] = 41559,
- [SMALL_STATE(955)] = 41587,
- [SMALL_STATE(956)] = 41615,
- [SMALL_STATE(957)] = 41643,
- [SMALL_STATE(958)] = 41671,
- [SMALL_STATE(959)] = 41699,
- [SMALL_STATE(960)] = 41727,
- [SMALL_STATE(961)] = 41755,
- [SMALL_STATE(962)] = 41793,
- [SMALL_STATE(963)] = 41821,
- [SMALL_STATE(964)] = 41849,
- [SMALL_STATE(965)] = 41887,
- [SMALL_STATE(966)] = 41925,
- [SMALL_STATE(967)] = 41963,
- [SMALL_STATE(968)] = 41991,
- [SMALL_STATE(969)] = 42018,
- [SMALL_STATE(970)] = 42045,
- [SMALL_STATE(971)] = 42074,
- [SMALL_STATE(972)] = 42101,
- [SMALL_STATE(973)] = 42128,
- [SMALL_STATE(974)] = 42161,
- [SMALL_STATE(975)] = 42188,
- [SMALL_STATE(976)] = 42215,
- [SMALL_STATE(977)] = 42242,
- [SMALL_STATE(978)] = 42269,
- [SMALL_STATE(979)] = 42296,
- [SMALL_STATE(980)] = 42323,
- [SMALL_STATE(981)] = 42363,
- [SMALL_STATE(982)] = 42407,
- [SMALL_STATE(983)] = 42449,
- [SMALL_STATE(984)] = 42489,
- [SMALL_STATE(985)] = 42535,
- [SMALL_STATE(986)] = 42577,
- [SMALL_STATE(987)] = 42619,
- [SMALL_STATE(988)] = 42661,
- [SMALL_STATE(989)] = 42699,
- [SMALL_STATE(990)] = 42734,
- [SMALL_STATE(991)] = 42759,
- [SMALL_STATE(992)] = 42784,
- [SMALL_STATE(993)] = 42809,
- [SMALL_STATE(994)] = 42844,
- [SMALL_STATE(995)] = 42887,
- [SMALL_STATE(996)] = 42922,
- [SMALL_STATE(997)] = 42961,
- [SMALL_STATE(998)] = 42996,
- [SMALL_STATE(999)] = 43031,
- [SMALL_STATE(1000)] = 43066,
- [SMALL_STATE(1001)] = 43101,
- [SMALL_STATE(1002)] = 43136,
- [SMALL_STATE(1003)] = 43171,
- [SMALL_STATE(1004)] = 43206,
- [SMALL_STATE(1005)] = 43247,
- [SMALL_STATE(1006)] = 43282,
- [SMALL_STATE(1007)] = 43317,
- [SMALL_STATE(1008)] = 43342,
- [SMALL_STATE(1009)] = 43377,
- [SMALL_STATE(1010)] = 43412,
- [SMALL_STATE(1011)] = 43451,
- [SMALL_STATE(1012)] = 43494,
- [SMALL_STATE(1013)] = 43529,
- [SMALL_STATE(1014)] = 43570,
- [SMALL_STATE(1015)] = 43595,
- [SMALL_STATE(1016)] = 43630,
- [SMALL_STATE(1017)] = 43665,
- [SMALL_STATE(1018)] = 43700,
- [SMALL_STATE(1019)] = 43735,
- [SMALL_STATE(1020)] = 43770,
- [SMALL_STATE(1021)] = 43805,
- [SMALL_STATE(1022)] = 43840,
- [SMALL_STATE(1023)] = 43875,
- [SMALL_STATE(1024)] = 43900,
- [SMALL_STATE(1025)] = 43935,
- [SMALL_STATE(1026)] = 43967,
- [SMALL_STATE(1027)] = 43999,
- [SMALL_STATE(1028)] = 44031,
- [SMALL_STATE(1029)] = 44053,
- [SMALL_STATE(1030)] = 44085,
- [SMALL_STATE(1031)] = 44117,
- [SMALL_STATE(1032)] = 44149,
- [SMALL_STATE(1033)] = 44171,
- [SMALL_STATE(1034)] = 44193,
- [SMALL_STATE(1035)] = 44215,
- [SMALL_STATE(1036)] = 44247,
- [SMALL_STATE(1037)] = 44279,
- [SMALL_STATE(1038)] = 44311,
- [SMALL_STATE(1039)] = 44343,
- [SMALL_STATE(1040)] = 44375,
- [SMALL_STATE(1041)] = 44407,
- [SMALL_STATE(1042)] = 44439,
- [SMALL_STATE(1043)] = 44471,
- [SMALL_STATE(1044)] = 44503,
- [SMALL_STATE(1045)] = 44535,
- [SMALL_STATE(1046)] = 44567,
- [SMALL_STATE(1047)] = 44599,
- [SMALL_STATE(1048)] = 44621,
- [SMALL_STATE(1049)] = 44658,
- [SMALL_STATE(1050)] = 44694,
- [SMALL_STATE(1051)] = 44730,
- [SMALL_STATE(1052)] = 44760,
- [SMALL_STATE(1053)] = 44790,
- [SMALL_STATE(1054)] = 44820,
- [SMALL_STATE(1055)] = 44856,
- [SMALL_STATE(1056)] = 44886,
- [SMALL_STATE(1057)] = 44916,
- [SMALL_STATE(1058)] = 44946,
- [SMALL_STATE(1059)] = 44976,
- [SMALL_STATE(1060)] = 45006,
- [SMALL_STATE(1061)] = 45042,
- [SMALL_STATE(1062)] = 45075,
- [SMALL_STATE(1063)] = 45102,
- [SMALL_STATE(1064)] = 45135,
- [SMALL_STATE(1065)] = 45168,
- [SMALL_STATE(1066)] = 45201,
- [SMALL_STATE(1067)] = 45234,
- [SMALL_STATE(1068)] = 45267,
- [SMALL_STATE(1069)] = 45300,
- [SMALL_STATE(1070)] = 45333,
- [SMALL_STATE(1071)] = 45363,
- [SMALL_STATE(1072)] = 45393,
- [SMALL_STATE(1073)] = 45423,
- [SMALL_STATE(1074)] = 45453,
- [SMALL_STATE(1075)] = 45483,
- [SMALL_STATE(1076)] = 45513,
- [SMALL_STATE(1077)] = 45543,
- [SMALL_STATE(1078)] = 45573,
- [SMALL_STATE(1079)] = 45603,
- [SMALL_STATE(1080)] = 45633,
- [SMALL_STATE(1081)] = 45663,
- [SMALL_STATE(1082)] = 45693,
- [SMALL_STATE(1083)] = 45723,
- [SMALL_STATE(1084)] = 45753,
- [SMALL_STATE(1085)] = 45779,
- [SMALL_STATE(1086)] = 45805,
- [SMALL_STATE(1087)] = 45833,
- [SMALL_STATE(1088)] = 45863,
- [SMALL_STATE(1089)] = 45893,
- [SMALL_STATE(1090)] = 45923,
- [SMALL_STATE(1091)] = 45953,
- [SMALL_STATE(1092)] = 45983,
- [SMALL_STATE(1093)] = 46013,
- [SMALL_STATE(1094)] = 46040,
- [SMALL_STATE(1095)] = 46067,
- [SMALL_STATE(1096)] = 46085,
- [SMALL_STATE(1097)] = 46099,
- [SMALL_STATE(1098)] = 46113,
- [SMALL_STATE(1099)] = 46137,
- [SMALL_STATE(1100)] = 46161,
- [SMALL_STATE(1101)] = 46179,
- [SMALL_STATE(1102)] = 46201,
- [SMALL_STATE(1103)] = 46225,
- [SMALL_STATE(1104)] = 46245,
- [SMALL_STATE(1105)] = 46269,
- [SMALL_STATE(1106)] = 46293,
- [SMALL_STATE(1107)] = 46307,
- [SMALL_STATE(1108)] = 46329,
- [SMALL_STATE(1109)] = 46353,
- [SMALL_STATE(1110)] = 46375,
- [SMALL_STATE(1111)] = 46389,
- [SMALL_STATE(1112)] = 46403,
- [SMALL_STATE(1113)] = 46425,
- [SMALL_STATE(1114)] = 46447,
- [SMALL_STATE(1115)] = 46471,
- [SMALL_STATE(1116)] = 46495,
- [SMALL_STATE(1117)] = 46519,
- [SMALL_STATE(1118)] = 46539,
- [SMALL_STATE(1119)] = 46561,
- [SMALL_STATE(1120)] = 46585,
- [SMALL_STATE(1121)] = 46604,
- [SMALL_STATE(1122)] = 46623,
- [SMALL_STATE(1123)] = 46636,
- [SMALL_STATE(1124)] = 46651,
- [SMALL_STATE(1125)] = 46670,
- [SMALL_STATE(1126)] = 46691,
- [SMALL_STATE(1127)] = 46708,
- [SMALL_STATE(1128)] = 46729,
- [SMALL_STATE(1129)] = 46742,
- [SMALL_STATE(1130)] = 46755,
- [SMALL_STATE(1131)] = 46776,
- [SMALL_STATE(1132)] = 46789,
- [SMALL_STATE(1133)] = 46802,
- [SMALL_STATE(1134)] = 46823,
- [SMALL_STATE(1135)] = 46842,
- [SMALL_STATE(1136)] = 46861,
- [SMALL_STATE(1137)] = 46882,
- [SMALL_STATE(1138)] = 46901,
- [SMALL_STATE(1139)] = 46914,
- [SMALL_STATE(1140)] = 46933,
- [SMALL_STATE(1141)] = 46952,
- [SMALL_STATE(1142)] = 46973,
- [SMALL_STATE(1143)] = 46992,
- [SMALL_STATE(1144)] = 47011,
- [SMALL_STATE(1145)] = 47024,
- [SMALL_STATE(1146)] = 47039,
- [SMALL_STATE(1147)] = 47052,
- [SMALL_STATE(1148)] = 47065,
- [SMALL_STATE(1149)] = 47078,
- [SMALL_STATE(1150)] = 47097,
- [SMALL_STATE(1151)] = 47111,
- [SMALL_STATE(1152)] = 47125,
- [SMALL_STATE(1153)] = 47145,
- [SMALL_STATE(1154)] = 47165,
- [SMALL_STATE(1155)] = 47179,
- [SMALL_STATE(1156)] = 47199,
- [SMALL_STATE(1157)] = 47213,
- [SMALL_STATE(1158)] = 47227,
- [SMALL_STATE(1159)] = 47241,
- [SMALL_STATE(1160)] = 47255,
- [SMALL_STATE(1161)] = 47267,
- [SMALL_STATE(1162)] = 47287,
- [SMALL_STATE(1163)] = 47307,
- [SMALL_STATE(1164)] = 47323,
- [SMALL_STATE(1165)] = 47343,
- [SMALL_STATE(1166)] = 47355,
- [SMALL_STATE(1167)] = 47369,
- [SMALL_STATE(1168)] = 47383,
- [SMALL_STATE(1169)] = 47397,
- [SMALL_STATE(1170)] = 47417,
- [SMALL_STATE(1171)] = 47431,
- [SMALL_STATE(1172)] = 47445,
- [SMALL_STATE(1173)] = 47459,
- [SMALL_STATE(1174)] = 47473,
- [SMALL_STATE(1175)] = 47491,
- [SMALL_STATE(1176)] = 47511,
- [SMALL_STATE(1177)] = 47531,
- [SMALL_STATE(1178)] = 47547,
- [SMALL_STATE(1179)] = 47567,
- [SMALL_STATE(1180)] = 47581,
- [SMALL_STATE(1181)] = 47601,
- [SMALL_STATE(1182)] = 47615,
- [SMALL_STATE(1183)] = 47629,
- [SMALL_STATE(1184)] = 47643,
- [SMALL_STATE(1185)] = 47663,
- [SMALL_STATE(1186)] = 47681,
- [SMALL_STATE(1187)] = 47697,
- [SMALL_STATE(1188)] = 47717,
- [SMALL_STATE(1189)] = 47731,
- [SMALL_STATE(1190)] = 47751,
- [SMALL_STATE(1191)] = 47765,
- [SMALL_STATE(1192)] = 47785,
- [SMALL_STATE(1193)] = 47799,
- [SMALL_STATE(1194)] = 47813,
- [SMALL_STATE(1195)] = 47827,
- [SMALL_STATE(1196)] = 47847,
- [SMALL_STATE(1197)] = 47867,
- [SMALL_STATE(1198)] = 47881,
- [SMALL_STATE(1199)] = 47901,
- [SMALL_STATE(1200)] = 47919,
- [SMALL_STATE(1201)] = 47933,
- [SMALL_STATE(1202)] = 47947,
- [SMALL_STATE(1203)] = 47959,
- [SMALL_STATE(1204)] = 47973,
- [SMALL_STATE(1205)] = 47987,
- [SMALL_STATE(1206)] = 48001,
- [SMALL_STATE(1207)] = 48015,
- [SMALL_STATE(1208)] = 48029,
- [SMALL_STATE(1209)] = 48049,
- [SMALL_STATE(1210)] = 48063,
- [SMALL_STATE(1211)] = 48077,
- [SMALL_STATE(1212)] = 48091,
- [SMALL_STATE(1213)] = 48105,
- [SMALL_STATE(1214)] = 48125,
- [SMALL_STATE(1215)] = 48145,
- [SMALL_STATE(1216)] = 48165,
- [SMALL_STATE(1217)] = 48179,
- [SMALL_STATE(1218)] = 48196,
- [SMALL_STATE(1219)] = 48213,
- [SMALL_STATE(1220)] = 48228,
- [SMALL_STATE(1221)] = 48243,
- [SMALL_STATE(1222)] = 48258,
- [SMALL_STATE(1223)] = 48275,
- [SMALL_STATE(1224)] = 48292,
- [SMALL_STATE(1225)] = 48309,
- [SMALL_STATE(1226)] = 48326,
- [SMALL_STATE(1227)] = 48343,
- [SMALL_STATE(1228)] = 48360,
- [SMALL_STATE(1229)] = 48377,
- [SMALL_STATE(1230)] = 48394,
- [SMALL_STATE(1231)] = 48405,
- [SMALL_STATE(1232)] = 48424,
- [SMALL_STATE(1233)] = 48443,
- [SMALL_STATE(1234)] = 48460,
- [SMALL_STATE(1235)] = 48477,
- [SMALL_STATE(1236)] = 48494,
- [SMALL_STATE(1237)] = 48511,
- [SMALL_STATE(1238)] = 48522,
- [SMALL_STATE(1239)] = 48535,
- [SMALL_STATE(1240)] = 48552,
- [SMALL_STATE(1241)] = 48563,
- [SMALL_STATE(1242)] = 48580,
- [SMALL_STATE(1243)] = 48597,
- [SMALL_STATE(1244)] = 48612,
- [SMALL_STATE(1245)] = 48625,
- [SMALL_STATE(1246)] = 48642,
- [SMALL_STATE(1247)] = 48659,
- [SMALL_STATE(1248)] = 48676,
- [SMALL_STATE(1249)] = 48693,
- [SMALL_STATE(1250)] = 48710,
- [SMALL_STATE(1251)] = 48727,
- [SMALL_STATE(1252)] = 48738,
- [SMALL_STATE(1253)] = 48755,
- [SMALL_STATE(1254)] = 48772,
- [SMALL_STATE(1255)] = 48789,
- [SMALL_STATE(1256)] = 48806,
- [SMALL_STATE(1257)] = 48823,
- [SMALL_STATE(1258)] = 48840,
- [SMALL_STATE(1259)] = 48851,
- [SMALL_STATE(1260)] = 48862,
- [SMALL_STATE(1261)] = 48879,
- [SMALL_STATE(1262)] = 48896,
- [SMALL_STATE(1263)] = 48913,
- [SMALL_STATE(1264)] = 48928,
- [SMALL_STATE(1265)] = 48945,
- [SMALL_STATE(1266)] = 48962,
- [SMALL_STATE(1267)] = 48977,
- [SMALL_STATE(1268)] = 48994,
- [SMALL_STATE(1269)] = 49013,
- [SMALL_STATE(1270)] = 49032,
- [SMALL_STATE(1271)] = 49047,
- [SMALL_STATE(1272)] = 49064,
- [SMALL_STATE(1273)] = 49081,
- [SMALL_STATE(1274)] = 49096,
- [SMALL_STATE(1275)] = 49113,
- [SMALL_STATE(1276)] = 49130,
- [SMALL_STATE(1277)] = 49147,
- [SMALL_STATE(1278)] = 49164,
- [SMALL_STATE(1279)] = 49181,
- [SMALL_STATE(1280)] = 49198,
- [SMALL_STATE(1281)] = 49213,
- [SMALL_STATE(1282)] = 49228,
- [SMALL_STATE(1283)] = 49243,
- [SMALL_STATE(1284)] = 49258,
- [SMALL_STATE(1285)] = 49273,
- [SMALL_STATE(1286)] = 49290,
- [SMALL_STATE(1287)] = 49309,
- [SMALL_STATE(1288)] = 49326,
- [SMALL_STATE(1289)] = 49343,
- [SMALL_STATE(1290)] = 49360,
- [SMALL_STATE(1291)] = 49379,
- [SMALL_STATE(1292)] = 49393,
- [SMALL_STATE(1293)] = 49407,
- [SMALL_STATE(1294)] = 49421,
- [SMALL_STATE(1295)] = 49435,
- [SMALL_STATE(1296)] = 49447,
- [SMALL_STATE(1297)] = 49461,
- [SMALL_STATE(1298)] = 49475,
- [SMALL_STATE(1299)] = 49485,
- [SMALL_STATE(1300)] = 49499,
- [SMALL_STATE(1301)] = 49513,
- [SMALL_STATE(1302)] = 49527,
- [SMALL_STATE(1303)] = 49541,
- [SMALL_STATE(1304)] = 49557,
- [SMALL_STATE(1305)] = 49571,
- [SMALL_STATE(1306)] = 49585,
- [SMALL_STATE(1307)] = 49599,
- [SMALL_STATE(1308)] = 49611,
- [SMALL_STATE(1309)] = 49625,
- [SMALL_STATE(1310)] = 49639,
- [SMALL_STATE(1311)] = 49653,
- [SMALL_STATE(1312)] = 49667,
- [SMALL_STATE(1313)] = 49681,
- [SMALL_STATE(1314)] = 49691,
- [SMALL_STATE(1315)] = 49705,
- [SMALL_STATE(1316)] = 49719,
- [SMALL_STATE(1317)] = 49731,
- [SMALL_STATE(1318)] = 49745,
- [SMALL_STATE(1319)] = 49759,
- [SMALL_STATE(1320)] = 49773,
- [SMALL_STATE(1321)] = 49787,
- [SMALL_STATE(1322)] = 49797,
- [SMALL_STATE(1323)] = 49811,
- [SMALL_STATE(1324)] = 49825,
- [SMALL_STATE(1325)] = 49839,
- [SMALL_STATE(1326)] = 49853,
- [SMALL_STATE(1327)] = 49867,
- [SMALL_STATE(1328)] = 49881,
- [SMALL_STATE(1329)] = 49895,
- [SMALL_STATE(1330)] = 49909,
- [SMALL_STATE(1331)] = 49919,
- [SMALL_STATE(1332)] = 49933,
- [SMALL_STATE(1333)] = 49947,
- [SMALL_STATE(1334)] = 49961,
- [SMALL_STATE(1335)] = 49975,
- [SMALL_STATE(1336)] = 49987,
- [SMALL_STATE(1337)] = 50001,
- [SMALL_STATE(1338)] = 50015,
- [SMALL_STATE(1339)] = 50027,
- [SMALL_STATE(1340)] = 50039,
- [SMALL_STATE(1341)] = 50051,
- [SMALL_STATE(1342)] = 50065,
- [SMALL_STATE(1343)] = 50079,
- [SMALL_STATE(1344)] = 50093,
- [SMALL_STATE(1345)] = 50103,
- [SMALL_STATE(1346)] = 50115,
- [SMALL_STATE(1347)] = 50129,
- [SMALL_STATE(1348)] = 50143,
- [SMALL_STATE(1349)] = 50159,
- [SMALL_STATE(1350)] = 50169,
- [SMALL_STATE(1351)] = 50181,
- [SMALL_STATE(1352)] = 50191,
- [SMALL_STATE(1353)] = 50205,
- [SMALL_STATE(1354)] = 50215,
- [SMALL_STATE(1355)] = 50229,
- [SMALL_STATE(1356)] = 50243,
- [SMALL_STATE(1357)] = 50257,
- [SMALL_STATE(1358)] = 50273,
- [SMALL_STATE(1359)] = 50287,
- [SMALL_STATE(1360)] = 50301,
- [SMALL_STATE(1361)] = 50315,
- [SMALL_STATE(1362)] = 50329,
- [SMALL_STATE(1363)] = 50343,
- [SMALL_STATE(1364)] = 50357,
- [SMALL_STATE(1365)] = 50373,
- [SMALL_STATE(1366)] = 50387,
- [SMALL_STATE(1367)] = 50401,
- [SMALL_STATE(1368)] = 50415,
- [SMALL_STATE(1369)] = 50429,
- [SMALL_STATE(1370)] = 50443,
- [SMALL_STATE(1371)] = 50457,
- [SMALL_STATE(1372)] = 50471,
- [SMALL_STATE(1373)] = 50485,
- [SMALL_STATE(1374)] = 50499,
- [SMALL_STATE(1375)] = 50515,
- [SMALL_STATE(1376)] = 50529,
- [SMALL_STATE(1377)] = 50541,
- [SMALL_STATE(1378)] = 50553,
- [SMALL_STATE(1379)] = 50569,
- [SMALL_STATE(1380)] = 50583,
- [SMALL_STATE(1381)] = 50597,
- [SMALL_STATE(1382)] = 50611,
- [SMALL_STATE(1383)] = 50625,
- [SMALL_STATE(1384)] = 50639,
- [SMALL_STATE(1385)] = 50653,
- [SMALL_STATE(1386)] = 50665,
- [SMALL_STATE(1387)] = 50681,
- [SMALL_STATE(1388)] = 50695,
- [SMALL_STATE(1389)] = 50709,
- [SMALL_STATE(1390)] = 50723,
- [SMALL_STATE(1391)] = 50737,
- [SMALL_STATE(1392)] = 50751,
- [SMALL_STATE(1393)] = 50765,
- [SMALL_STATE(1394)] = 50777,
- [SMALL_STATE(1395)] = 50791,
- [SMALL_STATE(1396)] = 50802,
- [SMALL_STATE(1397)] = 50813,
- [SMALL_STATE(1398)] = 50822,
- [SMALL_STATE(1399)] = 50833,
- [SMALL_STATE(1400)] = 50844,
- [SMALL_STATE(1401)] = 50855,
- [SMALL_STATE(1402)] = 50866,
- [SMALL_STATE(1403)] = 50877,
- [SMALL_STATE(1404)] = 50888,
- [SMALL_STATE(1405)] = 50899,
- [SMALL_STATE(1406)] = 50910,
- [SMALL_STATE(1407)] = 50921,
- [SMALL_STATE(1408)] = 50932,
- [SMALL_STATE(1409)] = 50943,
- [SMALL_STATE(1410)] = 50954,
- [SMALL_STATE(1411)] = 50965,
- [SMALL_STATE(1412)] = 50976,
- [SMALL_STATE(1413)] = 50985,
- [SMALL_STATE(1414)] = 50996,
- [SMALL_STATE(1415)] = 51007,
- [SMALL_STATE(1416)] = 51018,
- [SMALL_STATE(1417)] = 51029,
- [SMALL_STATE(1418)] = 51040,
- [SMALL_STATE(1419)] = 51051,
- [SMALL_STATE(1420)] = 51062,
- [SMALL_STATE(1421)] = 51073,
- [SMALL_STATE(1422)] = 51084,
- [SMALL_STATE(1423)] = 51095,
- [SMALL_STATE(1424)] = 51106,
- [SMALL_STATE(1425)] = 51117,
- [SMALL_STATE(1426)] = 51128,
- [SMALL_STATE(1427)] = 51139,
- [SMALL_STATE(1428)] = 51150,
- [SMALL_STATE(1429)] = 51161,
- [SMALL_STATE(1430)] = 51172,
- [SMALL_STATE(1431)] = 51181,
- [SMALL_STATE(1432)] = 51192,
- [SMALL_STATE(1433)] = 51203,
- [SMALL_STATE(1434)] = 51214,
- [SMALL_STATE(1435)] = 51225,
- [SMALL_STATE(1436)] = 51236,
- [SMALL_STATE(1437)] = 51247,
- [SMALL_STATE(1438)] = 51258,
- [SMALL_STATE(1439)] = 51269,
- [SMALL_STATE(1440)] = 51280,
- [SMALL_STATE(1441)] = 51291,
- [SMALL_STATE(1442)] = 51302,
- [SMALL_STATE(1443)] = 51311,
- [SMALL_STATE(1444)] = 51320,
- [SMALL_STATE(1445)] = 51331,
- [SMALL_STATE(1446)] = 51342,
- [SMALL_STATE(1447)] = 51353,
- [SMALL_STATE(1448)] = 51364,
- [SMALL_STATE(1449)] = 51375,
- [SMALL_STATE(1450)] = 51386,
- [SMALL_STATE(1451)] = 51397,
- [SMALL_STATE(1452)] = 51408,
- [SMALL_STATE(1453)] = 51417,
- [SMALL_STATE(1454)] = 51428,
- [SMALL_STATE(1455)] = 51439,
- [SMALL_STATE(1456)] = 51450,
- [SMALL_STATE(1457)] = 51461,
- [SMALL_STATE(1458)] = 51472,
- [SMALL_STATE(1459)] = 51483,
- [SMALL_STATE(1460)] = 51494,
- [SMALL_STATE(1461)] = 51505,
- [SMALL_STATE(1462)] = 51516,
- [SMALL_STATE(1463)] = 51527,
- [SMALL_STATE(1464)] = 51538,
- [SMALL_STATE(1465)] = 51549,
- [SMALL_STATE(1466)] = 51560,
- [SMALL_STATE(1467)] = 51571,
- [SMALL_STATE(1468)] = 51582,
- [SMALL_STATE(1469)] = 51591,
- [SMALL_STATE(1470)] = 51602,
- [SMALL_STATE(1471)] = 51611,
- [SMALL_STATE(1472)] = 51622,
- [SMALL_STATE(1473)] = 51633,
- [SMALL_STATE(1474)] = 51642,
- [SMALL_STATE(1475)] = 51651,
- [SMALL_STATE(1476)] = 51662,
- [SMALL_STATE(1477)] = 51673,
- [SMALL_STATE(1478)] = 51684,
- [SMALL_STATE(1479)] = 51693,
- [SMALL_STATE(1480)] = 51704,
- [SMALL_STATE(1481)] = 51715,
- [SMALL_STATE(1482)] = 51724,
- [SMALL_STATE(1483)] = 51735,
- [SMALL_STATE(1484)] = 51746,
- [SMALL_STATE(1485)] = 51757,
- [SMALL_STATE(1486)] = 51766,
- [SMALL_STATE(1487)] = 51777,
- [SMALL_STATE(1488)] = 51788,
- [SMALL_STATE(1489)] = 51799,
- [SMALL_STATE(1490)] = 51810,
- [SMALL_STATE(1491)] = 51819,
- [SMALL_STATE(1492)] = 51828,
- [SMALL_STATE(1493)] = 51839,
- [SMALL_STATE(1494)] = 51850,
- [SMALL_STATE(1495)] = 51861,
- [SMALL_STATE(1496)] = 51872,
- [SMALL_STATE(1497)] = 51883,
- [SMALL_STATE(1498)] = 51894,
- [SMALL_STATE(1499)] = 51905,
- [SMALL_STATE(1500)] = 51916,
- [SMALL_STATE(1501)] = 51927,
- [SMALL_STATE(1502)] = 51938,
- [SMALL_STATE(1503)] = 51949,
- [SMALL_STATE(1504)] = 51960,
- [SMALL_STATE(1505)] = 51971,
- [SMALL_STATE(1506)] = 51982,
- [SMALL_STATE(1507)] = 51993,
- [SMALL_STATE(1508)] = 52004,
- [SMALL_STATE(1509)] = 52015,
- [SMALL_STATE(1510)] = 52026,
- [SMALL_STATE(1511)] = 52035,
- [SMALL_STATE(1512)] = 52046,
- [SMALL_STATE(1513)] = 52057,
- [SMALL_STATE(1514)] = 52068,
- [SMALL_STATE(1515)] = 52077,
- [SMALL_STATE(1516)] = 52086,
- [SMALL_STATE(1517)] = 52097,
- [SMALL_STATE(1518)] = 52108,
- [SMALL_STATE(1519)] = 52119,
- [SMALL_STATE(1520)] = 52130,
- [SMALL_STATE(1521)] = 52141,
- [SMALL_STATE(1522)] = 52152,
- [SMALL_STATE(1523)] = 52161,
- [SMALL_STATE(1524)] = 52172,
- [SMALL_STATE(1525)] = 52183,
- [SMALL_STATE(1526)] = 52194,
- [SMALL_STATE(1527)] = 52203,
- [SMALL_STATE(1528)] = 52214,
- [SMALL_STATE(1529)] = 52225,
- [SMALL_STATE(1530)] = 52236,
- [SMALL_STATE(1531)] = 52247,
- [SMALL_STATE(1532)] = 52258,
- [SMALL_STATE(1533)] = 52269,
- [SMALL_STATE(1534)] = 52280,
- [SMALL_STATE(1535)] = 52291,
- [SMALL_STATE(1536)] = 52302,
- [SMALL_STATE(1537)] = 52313,
- [SMALL_STATE(1538)] = 52324,
- [SMALL_STATE(1539)] = 52335,
- [SMALL_STATE(1540)] = 52346,
- [SMALL_STATE(1541)] = 52357,
- [SMALL_STATE(1542)] = 52368,
- [SMALL_STATE(1543)] = 52379,
- [SMALL_STATE(1544)] = 52388,
- [SMALL_STATE(1545)] = 52399,
- [SMALL_STATE(1546)] = 52408,
- [SMALL_STATE(1547)] = 52419,
- [SMALL_STATE(1548)] = 52430,
- [SMALL_STATE(1549)] = 52441,
- [SMALL_STATE(1550)] = 52452,
- [SMALL_STATE(1551)] = 52463,
- [SMALL_STATE(1552)] = 52474,
- [SMALL_STATE(1553)] = 52485,
- [SMALL_STATE(1554)] = 52496,
- [SMALL_STATE(1555)] = 52505,
- [SMALL_STATE(1556)] = 52516,
- [SMALL_STATE(1557)] = 52527,
- [SMALL_STATE(1558)] = 52538,
- [SMALL_STATE(1559)] = 52549,
- [SMALL_STATE(1560)] = 52560,
- [SMALL_STATE(1561)] = 52571,
- [SMALL_STATE(1562)] = 52582,
- [SMALL_STATE(1563)] = 52593,
- [SMALL_STATE(1564)] = 52604,
- [SMALL_STATE(1565)] = 52615,
- [SMALL_STATE(1566)] = 52626,
- [SMALL_STATE(1567)] = 52637,
- [SMALL_STATE(1568)] = 52648,
- [SMALL_STATE(1569)] = 52659,
- [SMALL_STATE(1570)] = 52670,
- [SMALL_STATE(1571)] = 52681,
- [SMALL_STATE(1572)] = 52692,
- [SMALL_STATE(1573)] = 52703,
- [SMALL_STATE(1574)] = 52714,
- [SMALL_STATE(1575)] = 52725,
- [SMALL_STATE(1576)] = 52736,
- [SMALL_STATE(1577)] = 52745,
- [SMALL_STATE(1578)] = 52756,
- [SMALL_STATE(1579)] = 52767,
- [SMALL_STATE(1580)] = 52778,
- [SMALL_STATE(1581)] = 52789,
- [SMALL_STATE(1582)] = 52800,
- [SMALL_STATE(1583)] = 52809,
- [SMALL_STATE(1584)] = 52820,
- [SMALL_STATE(1585)] = 52829,
- [SMALL_STATE(1586)] = 52840,
- [SMALL_STATE(1587)] = 52851,
- [SMALL_STATE(1588)] = 52862,
- [SMALL_STATE(1589)] = 52873,
- [SMALL_STATE(1590)] = 52884,
- [SMALL_STATE(1591)] = 52895,
- [SMALL_STATE(1592)] = 52906,
- [SMALL_STATE(1593)] = 52917,
- [SMALL_STATE(1594)] = 52928,
- [SMALL_STATE(1595)] = 52939,
- [SMALL_STATE(1596)] = 52950,
- [SMALL_STATE(1597)] = 52961,
- [SMALL_STATE(1598)] = 52972,
- [SMALL_STATE(1599)] = 52983,
- [SMALL_STATE(1600)] = 52994,
- [SMALL_STATE(1601)] = 53005,
- [SMALL_STATE(1602)] = 53014,
- [SMALL_STATE(1603)] = 53025,
- [SMALL_STATE(1604)] = 53034,
- [SMALL_STATE(1605)] = 53045,
- [SMALL_STATE(1606)] = 53054,
- [SMALL_STATE(1607)] = 53065,
- [SMALL_STATE(1608)] = 53076,
- [SMALL_STATE(1609)] = 53087,
- [SMALL_STATE(1610)] = 53096,
- [SMALL_STATE(1611)] = 53107,
- [SMALL_STATE(1612)] = 53118,
- [SMALL_STATE(1613)] = 53127,
- [SMALL_STATE(1614)] = 53138,
- [SMALL_STATE(1615)] = 53149,
- [SMALL_STATE(1616)] = 53158,
- [SMALL_STATE(1617)] = 53169,
- [SMALL_STATE(1618)] = 53180,
- [SMALL_STATE(1619)] = 53191,
- [SMALL_STATE(1620)] = 53202,
- [SMALL_STATE(1621)] = 53213,
- [SMALL_STATE(1622)] = 53224,
- [SMALL_STATE(1623)] = 53235,
- [SMALL_STATE(1624)] = 53246,
- [SMALL_STATE(1625)] = 53257,
- [SMALL_STATE(1626)] = 53268,
- [SMALL_STATE(1627)] = 53279,
- [SMALL_STATE(1628)] = 53290,
- [SMALL_STATE(1629)] = 53301,
- [SMALL_STATE(1630)] = 53312,
- [SMALL_STATE(1631)] = 53321,
- [SMALL_STATE(1632)] = 53332,
- [SMALL_STATE(1633)] = 53343,
- [SMALL_STATE(1634)] = 53354,
- [SMALL_STATE(1635)] = 53365,
- [SMALL_STATE(1636)] = 53376,
- [SMALL_STATE(1637)] = 53387,
- [SMALL_STATE(1638)] = 53398,
- [SMALL_STATE(1639)] = 53409,
- [SMALL_STATE(1640)] = 53417,
- [SMALL_STATE(1641)] = 53425,
- [SMALL_STATE(1642)] = 53433,
- [SMALL_STATE(1643)] = 53441,
- [SMALL_STATE(1644)] = 53449,
- [SMALL_STATE(1645)] = 53457,
- [SMALL_STATE(1646)] = 53465,
- [SMALL_STATE(1647)] = 53473,
- [SMALL_STATE(1648)] = 53481,
- [SMALL_STATE(1649)] = 53489,
- [SMALL_STATE(1650)] = 53497,
- [SMALL_STATE(1651)] = 53505,
- [SMALL_STATE(1652)] = 53513,
- [SMALL_STATE(1653)] = 53521,
- [SMALL_STATE(1654)] = 53531,
- [SMALL_STATE(1655)] = 53539,
- [SMALL_STATE(1656)] = 53549,
- [SMALL_STATE(1657)] = 53557,
- [SMALL_STATE(1658)] = 53565,
- [SMALL_STATE(1659)] = 53573,
- [SMALL_STATE(1660)] = 53581,
- [SMALL_STATE(1661)] = 53589,
- [SMALL_STATE(1662)] = 53597,
- [SMALL_STATE(1663)] = 53605,
- [SMALL_STATE(1664)] = 53613,
- [SMALL_STATE(1665)] = 53621,
- [SMALL_STATE(1666)] = 53629,
- [SMALL_STATE(1667)] = 53637,
- [SMALL_STATE(1668)] = 53645,
- [SMALL_STATE(1669)] = 53653,
- [SMALL_STATE(1670)] = 53661,
- [SMALL_STATE(1671)] = 53669,
- [SMALL_STATE(1672)] = 53677,
- [SMALL_STATE(1673)] = 53685,
- [SMALL_STATE(1674)] = 53693,
- [SMALL_STATE(1675)] = 53701,
- [SMALL_STATE(1676)] = 53709,
- [SMALL_STATE(1677)] = 53717,
- [SMALL_STATE(1678)] = 53725,
- [SMALL_STATE(1679)] = 53733,
- [SMALL_STATE(1680)] = 53743,
- [SMALL_STATE(1681)] = 53751,
- [SMALL_STATE(1682)] = 53759,
- [SMALL_STATE(1683)] = 53767,
- [SMALL_STATE(1684)] = 53775,
- [SMALL_STATE(1685)] = 53783,
- [SMALL_STATE(1686)] = 53791,
- [SMALL_STATE(1687)] = 53799,
- [SMALL_STATE(1688)] = 53807,
- [SMALL_STATE(1689)] = 53815,
- [SMALL_STATE(1690)] = 53823,
- [SMALL_STATE(1691)] = 53831,
- [SMALL_STATE(1692)] = 53839,
- [SMALL_STATE(1693)] = 53847,
- [SMALL_STATE(1694)] = 53855,
- [SMALL_STATE(1695)] = 53863,
- [SMALL_STATE(1696)] = 53871,
- [SMALL_STATE(1697)] = 53879,
- [SMALL_STATE(1698)] = 53887,
- [SMALL_STATE(1699)] = 53895,
- [SMALL_STATE(1700)] = 53903,
- [SMALL_STATE(1701)] = 53911,
- [SMALL_STATE(1702)] = 53919,
- [SMALL_STATE(1703)] = 53927,
- [SMALL_STATE(1704)] = 53935,
- [SMALL_STATE(1705)] = 53945,
- [SMALL_STATE(1706)] = 53953,
- [SMALL_STATE(1707)] = 53963,
- [SMALL_STATE(1708)] = 53971,
- [SMALL_STATE(1709)] = 53981,
- [SMALL_STATE(1710)] = 53989,
- [SMALL_STATE(1711)] = 53997,
- [SMALL_STATE(1712)] = 54005,
- [SMALL_STATE(1713)] = 54013,
- [SMALL_STATE(1714)] = 54021,
- [SMALL_STATE(1715)] = 54031,
- [SMALL_STATE(1716)] = 54039,
- [SMALL_STATE(1717)] = 54047,
- [SMALL_STATE(1718)] = 54055,
- [SMALL_STATE(1719)] = 54063,
- [SMALL_STATE(1720)] = 54071,
- [SMALL_STATE(1721)] = 54079,
- [SMALL_STATE(1722)] = 54087,
- [SMALL_STATE(1723)] = 54095,
- [SMALL_STATE(1724)] = 54103,
- [SMALL_STATE(1725)] = 54111,
- [SMALL_STATE(1726)] = 54119,
- [SMALL_STATE(1727)] = 54127,
- [SMALL_STATE(1728)] = 54135,
- [SMALL_STATE(1729)] = 54143,
- [SMALL_STATE(1730)] = 54151,
- [SMALL_STATE(1731)] = 54159,
- [SMALL_STATE(1732)] = 54167,
- [SMALL_STATE(1733)] = 54177,
- [SMALL_STATE(1734)] = 54185,
- [SMALL_STATE(1735)] = 54193,
- [SMALL_STATE(1736)] = 54201,
- [SMALL_STATE(1737)] = 54209,
- [SMALL_STATE(1738)] = 54217,
- [SMALL_STATE(1739)] = 54225,
- [SMALL_STATE(1740)] = 54233,
- [SMALL_STATE(1741)] = 54241,
- [SMALL_STATE(1742)] = 54249,
- [SMALL_STATE(1743)] = 54257,
- [SMALL_STATE(1744)] = 54265,
- [SMALL_STATE(1745)] = 54273,
+ [SMALL_STATE(326)] = 0,
+ [SMALL_STATE(327)] = 71,
+ [SMALL_STATE(328)] = 142,
+ [SMALL_STATE(329)] = 233,
+ [SMALL_STATE(330)] = 322,
+ [SMALL_STATE(331)] = 412,
+ [SMALL_STATE(332)] = 498,
+ [SMALL_STATE(333)] = 584,
+ [SMALL_STATE(334)] = 658,
+ [SMALL_STATE(335)] = 744,
+ [SMALL_STATE(336)] = 815,
+ [SMALL_STATE(337)] = 886,
+ [SMALL_STATE(338)] = 955,
+ [SMALL_STATE(339)] = 1026,
+ [SMALL_STATE(340)] = 1095,
+ [SMALL_STATE(341)] = 1164,
+ [SMALL_STATE(342)] = 1235,
+ [SMALL_STATE(343)] = 1304,
+ [SMALL_STATE(344)] = 1391,
+ [SMALL_STATE(345)] = 1480,
+ [SMALL_STATE(346)] = 1553,
+ [SMALL_STATE(347)] = 1622,
+ [SMALL_STATE(348)] = 1693,
+ [SMALL_STATE(349)] = 1762,
+ [SMALL_STATE(350)] = 1833,
+ [SMALL_STATE(351)] = 1904,
+ [SMALL_STATE(352)] = 1975,
+ [SMALL_STATE(353)] = 2062,
+ [SMALL_STATE(354)] = 2133,
+ [SMALL_STATE(355)] = 2204,
+ [SMALL_STATE(356)] = 2273,
+ [SMALL_STATE(357)] = 2358,
+ [SMALL_STATE(358)] = 2443,
+ [SMALL_STATE(359)] = 2514,
+ [SMALL_STATE(360)] = 2583,
+ [SMALL_STATE(361)] = 2651,
+ [SMALL_STATE(362)] = 2719,
+ [SMALL_STATE(363)] = 2787,
+ [SMALL_STATE(364)] = 2855,
+ [SMALL_STATE(365)] = 2923,
+ [SMALL_STATE(366)] = 2991,
+ [SMALL_STATE(367)] = 3059,
+ [SMALL_STATE(368)] = 3127,
+ [SMALL_STATE(369)] = 3195,
+ [SMALL_STATE(370)] = 3263,
+ [SMALL_STATE(371)] = 3331,
+ [SMALL_STATE(372)] = 3399,
+ [SMALL_STATE(373)] = 3467,
+ [SMALL_STATE(374)] = 3535,
+ [SMALL_STATE(375)] = 3603,
+ [SMALL_STATE(376)] = 3671,
+ [SMALL_STATE(377)] = 3739,
+ [SMALL_STATE(378)] = 3807,
+ [SMALL_STATE(379)] = 3875,
+ [SMALL_STATE(380)] = 3943,
+ [SMALL_STATE(381)] = 4011,
+ [SMALL_STATE(382)] = 4079,
+ [SMALL_STATE(383)] = 4147,
+ [SMALL_STATE(384)] = 4215,
+ [SMALL_STATE(385)] = 4283,
+ [SMALL_STATE(386)] = 4351,
+ [SMALL_STATE(387)] = 4419,
+ [SMALL_STATE(388)] = 4487,
+ [SMALL_STATE(389)] = 4555,
+ [SMALL_STATE(390)] = 4623,
+ [SMALL_STATE(391)] = 4691,
+ [SMALL_STATE(392)] = 4759,
+ [SMALL_STATE(393)] = 4827,
+ [SMALL_STATE(394)] = 4895,
+ [SMALL_STATE(395)] = 4963,
+ [SMALL_STATE(396)] = 5031,
+ [SMALL_STATE(397)] = 5099,
+ [SMALL_STATE(398)] = 5167,
+ [SMALL_STATE(399)] = 5235,
+ [SMALL_STATE(400)] = 5303,
+ [SMALL_STATE(401)] = 5371,
+ [SMALL_STATE(402)] = 5439,
+ [SMALL_STATE(403)] = 5507,
+ [SMALL_STATE(404)] = 5575,
+ [SMALL_STATE(405)] = 5643,
+ [SMALL_STATE(406)] = 5711,
+ [SMALL_STATE(407)] = 5779,
+ [SMALL_STATE(408)] = 5847,
+ [SMALL_STATE(409)] = 5915,
+ [SMALL_STATE(410)] = 5983,
+ [SMALL_STATE(411)] = 6071,
+ [SMALL_STATE(412)] = 6139,
+ [SMALL_STATE(413)] = 6207,
+ [SMALL_STATE(414)] = 6275,
+ [SMALL_STATE(415)] = 6343,
+ [SMALL_STATE(416)] = 6411,
+ [SMALL_STATE(417)] = 6479,
+ [SMALL_STATE(418)] = 6547,
+ [SMALL_STATE(419)] = 6615,
+ [SMALL_STATE(420)] = 6683,
+ [SMALL_STATE(421)] = 6751,
+ [SMALL_STATE(422)] = 6819,
+ [SMALL_STATE(423)] = 6887,
+ [SMALL_STATE(424)] = 6955,
+ [SMALL_STATE(425)] = 7023,
+ [SMALL_STATE(426)] = 7091,
+ [SMALL_STATE(427)] = 7174,
+ [SMALL_STATE(428)] = 7240,
+ [SMALL_STATE(429)] = 7306,
+ [SMALL_STATE(430)] = 7372,
+ [SMALL_STATE(431)] = 7442,
+ [SMALL_STATE(432)] = 7508,
+ [SMALL_STATE(433)] = 7590,
+ [SMALL_STATE(434)] = 7656,
+ [SMALL_STATE(435)] = 7738,
+ [SMALL_STATE(436)] = 7804,
+ [SMALL_STATE(437)] = 7870,
+ [SMALL_STATE(438)] = 7952,
+ [SMALL_STATE(439)] = 8023,
+ [SMALL_STATE(440)] = 8094,
+ [SMALL_STATE(441)] = 8165,
+ [SMALL_STATE(442)] = 8236,
+ [SMALL_STATE(443)] = 8319,
+ [SMALL_STATE(444)] = 8387,
+ [SMALL_STATE(445)] = 8450,
+ [SMALL_STATE(446)] = 8513,
+ [SMALL_STATE(447)] = 8576,
+ [SMALL_STATE(448)] = 8645,
+ [SMALL_STATE(449)] = 8708,
+ [SMALL_STATE(450)] = 8777,
+ [SMALL_STATE(451)] = 8840,
+ [SMALL_STATE(452)] = 8909,
+ [SMALL_STATE(453)] = 8980,
+ [SMALL_STATE(454)] = 9051,
+ [SMALL_STATE(455)] = 9120,
+ [SMALL_STATE(456)] = 9191,
+ [SMALL_STATE(457)] = 9262,
+ [SMALL_STATE(458)] = 9325,
+ [SMALL_STATE(459)] = 9394,
+ [SMALL_STATE(460)] = 9457,
+ [SMALL_STATE(461)] = 9526,
+ [SMALL_STATE(462)] = 9593,
+ [SMALL_STATE(463)] = 9656,
+ [SMALL_STATE(464)] = 9719,
+ [SMALL_STATE(465)] = 9790,
+ [SMALL_STATE(466)] = 9853,
+ [SMALL_STATE(467)] = 9924,
+ [SMALL_STATE(468)] = 9995,
+ [SMALL_STATE(469)] = 10066,
+ [SMALL_STATE(470)] = 10137,
+ [SMALL_STATE(471)] = 10206,
+ [SMALL_STATE(472)] = 10275,
+ [SMALL_STATE(473)] = 10338,
+ [SMALL_STATE(474)] = 10401,
+ [SMALL_STATE(475)] = 10464,
+ [SMALL_STATE(476)] = 10527,
+ [SMALL_STATE(477)] = 10590,
+ [SMALL_STATE(478)] = 10653,
+ [SMALL_STATE(479)] = 10724,
+ [SMALL_STATE(480)] = 10794,
+ [SMALL_STATE(481)] = 10866,
+ [SMALL_STATE(482)] = 10932,
+ [SMALL_STATE(483)] = 11002,
+ [SMALL_STATE(484)] = 11070,
+ [SMALL_STATE(485)] = 11142,
+ [SMALL_STATE(486)] = 11210,
+ [SMALL_STATE(487)] = 11278,
+ [SMALL_STATE(488)] = 11344,
+ [SMALL_STATE(489)] = 11415,
+ [SMALL_STATE(490)] = 11484,
+ [SMALL_STATE(491)] = 11551,
+ [SMALL_STATE(492)] = 11618,
+ [SMALL_STATE(493)] = 11689,
+ [SMALL_STATE(494)] = 11756,
+ [SMALL_STATE(495)] = 11826,
+ [SMALL_STATE(496)] = 11892,
+ [SMALL_STATE(497)] = 11958,
+ [SMALL_STATE(498)] = 12028,
+ [SMALL_STATE(499)] = 12096,
+ [SMALL_STATE(500)] = 12162,
+ [SMALL_STATE(501)] = 12228,
+ [SMALL_STATE(502)] = 12295,
+ [SMALL_STATE(503)] = 12358,
+ [SMALL_STATE(504)] = 12424,
+ [SMALL_STATE(505)] = 12484,
+ [SMALL_STATE(506)] = 12540,
+ [SMALL_STATE(507)] = 12593,
+ [SMALL_STATE(508)] = 12654,
+ [SMALL_STATE(509)] = 12707,
+ [SMALL_STATE(510)] = 12768,
+ [SMALL_STATE(511)] = 12831,
+ [SMALL_STATE(512)] = 12884,
+ [SMALL_STATE(513)] = 12939,
+ [SMALL_STATE(514)] = 13002,
+ [SMALL_STATE(515)] = 13054,
+ [SMALL_STATE(516)] = 13104,
+ [SMALL_STATE(517)] = 13154,
+ [SMALL_STATE(518)] = 13204,
+ [SMALL_STATE(519)] = 13254,
+ [SMALL_STATE(520)] = 13304,
+ [SMALL_STATE(521)] = 13354,
+ [SMALL_STATE(522)] = 13404,
+ [SMALL_STATE(523)] = 13454,
+ [SMALL_STATE(524)] = 13504,
+ [SMALL_STATE(525)] = 13554,
+ [SMALL_STATE(526)] = 13608,
+ [SMALL_STATE(527)] = 13658,
+ [SMALL_STATE(528)] = 13708,
+ [SMALL_STATE(529)] = 13758,
+ [SMALL_STATE(530)] = 13808,
+ [SMALL_STATE(531)] = 13858,
+ [SMALL_STATE(532)] = 13908,
+ [SMALL_STATE(533)] = 13958,
+ [SMALL_STATE(534)] = 14012,
+ [SMALL_STATE(535)] = 14062,
+ [SMALL_STATE(536)] = 14112,
+ [SMALL_STATE(537)] = 14162,
+ [SMALL_STATE(538)] = 14212,
+ [SMALL_STATE(539)] = 14262,
+ [SMALL_STATE(540)] = 14312,
+ [SMALL_STATE(541)] = 14362,
+ [SMALL_STATE(542)] = 14412,
+ [SMALL_STATE(543)] = 14466,
+ [SMALL_STATE(544)] = 14516,
+ [SMALL_STATE(545)] = 14566,
+ [SMALL_STATE(546)] = 14616,
+ [SMALL_STATE(547)] = 14666,
+ [SMALL_STATE(548)] = 14716,
+ [SMALL_STATE(549)] = 14766,
+ [SMALL_STATE(550)] = 14816,
+ [SMALL_STATE(551)] = 14866,
+ [SMALL_STATE(552)] = 14916,
+ [SMALL_STATE(553)] = 14966,
+ [SMALL_STATE(554)] = 15016,
+ [SMALL_STATE(555)] = 15066,
+ [SMALL_STATE(556)] = 15116,
+ [SMALL_STATE(557)] = 15166,
+ [SMALL_STATE(558)] = 15216,
+ [SMALL_STATE(559)] = 15266,
+ [SMALL_STATE(560)] = 15316,
+ [SMALL_STATE(561)] = 15366,
+ [SMALL_STATE(562)] = 15416,
+ [SMALL_STATE(563)] = 15466,
+ [SMALL_STATE(564)] = 15516,
+ [SMALL_STATE(565)] = 15566,
+ [SMALL_STATE(566)] = 15616,
+ [SMALL_STATE(567)] = 15666,
+ [SMALL_STATE(568)] = 15716,
+ [SMALL_STATE(569)] = 15766,
+ [SMALL_STATE(570)] = 15816,
+ [SMALL_STATE(571)] = 15866,
+ [SMALL_STATE(572)] = 15916,
+ [SMALL_STATE(573)] = 15966,
+ [SMALL_STATE(574)] = 16016,
+ [SMALL_STATE(575)] = 16097,
+ [SMALL_STATE(576)] = 16190,
+ [SMALL_STATE(577)] = 16283,
+ [SMALL_STATE(578)] = 16334,
+ [SMALL_STATE(579)] = 16427,
+ [SMALL_STATE(580)] = 16490,
+ [SMALL_STATE(581)] = 16583,
+ [SMALL_STATE(582)] = 16676,
+ [SMALL_STATE(583)] = 16769,
+ [SMALL_STATE(584)] = 16862,
+ [SMALL_STATE(585)] = 16919,
+ [SMALL_STATE(586)] = 17012,
+ [SMALL_STATE(587)] = 17085,
+ [SMALL_STATE(588)] = 17178,
+ [SMALL_STATE(589)] = 17241,
+ [SMALL_STATE(590)] = 17334,
+ [SMALL_STATE(591)] = 17419,
+ [SMALL_STATE(592)] = 17506,
+ [SMALL_STATE(593)] = 17575,
+ [SMALL_STATE(594)] = 17658,
+ [SMALL_STATE(595)] = 17743,
+ [SMALL_STATE(596)] = 17810,
+ [SMALL_STATE(597)] = 17903,
+ [SMALL_STATE(598)] = 17954,
+ [SMALL_STATE(599)] = 18017,
+ [SMALL_STATE(600)] = 18068,
+ [SMALL_STATE(601)] = 18145,
+ [SMALL_STATE(602)] = 18196,
+ [SMALL_STATE(603)] = 18285,
+ [SMALL_STATE(604)] = 18378,
+ [SMALL_STATE(605)] = 18430,
+ [SMALL_STATE(606)] = 18484,
+ [SMALL_STATE(607)] = 18534,
+ [SMALL_STATE(608)] = 18626,
+ [SMALL_STATE(609)] = 18674,
+ [SMALL_STATE(610)] = 18734,
+ [SMALL_STATE(611)] = 18784,
+ [SMALL_STATE(612)] = 18842,
+ [SMALL_STATE(613)] = 18892,
+ [SMALL_STATE(614)] = 18942,
+ [SMALL_STATE(615)] = 19000,
+ [SMALL_STATE(616)] = 19052,
+ [SMALL_STATE(617)] = 19100,
+ [SMALL_STATE(618)] = 19160,
+ [SMALL_STATE(619)] = 19211,
+ [SMALL_STATE(620)] = 19258,
+ [SMALL_STATE(621)] = 19305,
+ [SMALL_STATE(622)] = 19352,
+ [SMALL_STATE(623)] = 19399,
+ [SMALL_STATE(624)] = 19490,
+ [SMALL_STATE(625)] = 19581,
+ [SMALL_STATE(626)] = 19628,
+ [SMALL_STATE(627)] = 19675,
+ [SMALL_STATE(628)] = 19722,
+ [SMALL_STATE(629)] = 19769,
+ [SMALL_STATE(630)] = 19860,
+ [SMALL_STATE(631)] = 19907,
+ [SMALL_STATE(632)] = 19998,
+ [SMALL_STATE(633)] = 20049,
+ [SMALL_STATE(634)] = 20096,
+ [SMALL_STATE(635)] = 20143,
+ [SMALL_STATE(636)] = 20190,
+ [SMALL_STATE(637)] = 20237,
+ [SMALL_STATE(638)] = 20284,
+ [SMALL_STATE(639)] = 20335,
+ [SMALL_STATE(640)] = 20382,
+ [SMALL_STATE(641)] = 20429,
+ [SMALL_STATE(642)] = 20476,
+ [SMALL_STATE(643)] = 20527,
+ [SMALL_STATE(644)] = 20576,
+ [SMALL_STATE(645)] = 20623,
+ [SMALL_STATE(646)] = 20674,
+ [SMALL_STATE(647)] = 20725,
+ [SMALL_STATE(648)] = 20772,
+ [SMALL_STATE(649)] = 20819,
+ [SMALL_STATE(650)] = 20866,
+ [SMALL_STATE(651)] = 20917,
+ [SMALL_STATE(652)] = 20964,
+ [SMALL_STATE(653)] = 21015,
+ [SMALL_STATE(654)] = 21062,
+ [SMALL_STATE(655)] = 21109,
+ [SMALL_STATE(656)] = 21156,
+ [SMALL_STATE(657)] = 21207,
+ [SMALL_STATE(658)] = 21254,
+ [SMALL_STATE(659)] = 21301,
+ [SMALL_STATE(660)] = 21348,
+ [SMALL_STATE(661)] = 21395,
+ [SMALL_STATE(662)] = 21446,
+ [SMALL_STATE(663)] = 21493,
+ [SMALL_STATE(664)] = 21540,
+ [SMALL_STATE(665)] = 21587,
+ [SMALL_STATE(666)] = 21636,
+ [SMALL_STATE(667)] = 21727,
+ [SMALL_STATE(668)] = 21778,
+ [SMALL_STATE(669)] = 21829,
+ [SMALL_STATE(670)] = 21880,
+ [SMALL_STATE(671)] = 21927,
+ [SMALL_STATE(672)] = 21978,
+ [SMALL_STATE(673)] = 22025,
+ [SMALL_STATE(674)] = 22116,
+ [SMALL_STATE(675)] = 22163,
+ [SMALL_STATE(676)] = 22210,
+ [SMALL_STATE(677)] = 22257,
+ [SMALL_STATE(678)] = 22304,
+ [SMALL_STATE(679)] = 22351,
+ [SMALL_STATE(680)] = 22398,
+ [SMALL_STATE(681)] = 22445,
+ [SMALL_STATE(682)] = 22492,
+ [SMALL_STATE(683)] = 22541,
+ [SMALL_STATE(684)] = 22588,
+ [SMALL_STATE(685)] = 22679,
+ [SMALL_STATE(686)] = 22726,
+ [SMALL_STATE(687)] = 22817,
+ [SMALL_STATE(688)] = 22888,
+ [SMALL_STATE(689)] = 22935,
+ [SMALL_STATE(690)] = 23026,
+ [SMALL_STATE(691)] = 23117,
+ [SMALL_STATE(692)] = 23178,
+ [SMALL_STATE(693)] = 23269,
+ [SMALL_STATE(694)] = 23360,
+ [SMALL_STATE(695)] = 23451,
+ [SMALL_STATE(696)] = 23522,
+ [SMALL_STATE(697)] = 23583,
+ [SMALL_STATE(698)] = 23666,
+ [SMALL_STATE(699)] = 23749,
+ [SMALL_STATE(700)] = 23834,
+ [SMALL_STATE(701)] = 23901,
+ [SMALL_STATE(702)] = 23980,
+ [SMALL_STATE(703)] = 24061,
+ [SMALL_STATE(704)] = 24144,
+ [SMALL_STATE(705)] = 24209,
+ [SMALL_STATE(706)] = 24270,
+ [SMALL_STATE(707)] = 24345,
+ [SMALL_STATE(708)] = 24432,
+ [SMALL_STATE(709)] = 24523,
+ [SMALL_STATE(710)] = 24614,
+ [SMALL_STATE(711)] = 24699,
+ [SMALL_STATE(712)] = 24766,
+ [SMALL_STATE(713)] = 24857,
+ [SMALL_STATE(714)] = 24948,
+ [SMALL_STATE(715)] = 25039,
+ [SMALL_STATE(716)] = 25118,
+ [SMALL_STATE(717)] = 25199,
+ [SMALL_STATE(718)] = 25282,
+ [SMALL_STATE(719)] = 25373,
+ [SMALL_STATE(720)] = 25438,
+ [SMALL_STATE(721)] = 25499,
+ [SMALL_STATE(722)] = 25574,
+ [SMALL_STATE(723)] = 25661,
+ [SMALL_STATE(724)] = 25708,
+ [SMALL_STATE(725)] = 25755,
+ [SMALL_STATE(726)] = 25804,
+ [SMALL_STATE(727)] = 25851,
+ [SMALL_STATE(728)] = 25942,
+ [SMALL_STATE(729)] = 26033,
+ [SMALL_STATE(730)] = 26080,
+ [SMALL_STATE(731)] = 26171,
+ [SMALL_STATE(732)] = 26218,
+ [SMALL_STATE(733)] = 26309,
+ [SMALL_STATE(734)] = 26400,
+ [SMALL_STATE(735)] = 26494,
+ [SMALL_STATE(736)] = 26544,
+ [SMALL_STATE(737)] = 26636,
+ [SMALL_STATE(738)] = 26726,
+ [SMALL_STATE(739)] = 26820,
+ [SMALL_STATE(740)] = 26910,
+ [SMALL_STATE(741)] = 26962,
+ [SMALL_STATE(742)] = 27014,
+ [SMALL_STATE(743)] = 27066,
+ [SMALL_STATE(744)] = 27116,
+ [SMALL_STATE(745)] = 27168,
+ [SMALL_STATE(746)] = 27262,
+ [SMALL_STATE(747)] = 27356,
+ [SMALL_STATE(748)] = 27450,
+ [SMALL_STATE(749)] = 27544,
+ [SMALL_STATE(750)] = 27594,
+ [SMALL_STATE(751)] = 27687,
+ [SMALL_STATE(752)] = 27780,
+ [SMALL_STATE(753)] = 27873,
+ [SMALL_STATE(754)] = 27966,
+ [SMALL_STATE(755)] = 28059,
+ [SMALL_STATE(756)] = 28152,
+ [SMALL_STATE(757)] = 28245,
+ [SMALL_STATE(758)] = 28334,
+ [SMALL_STATE(759)] = 28423,
+ [SMALL_STATE(760)] = 28474,
+ [SMALL_STATE(761)] = 28567,
+ [SMALL_STATE(762)] = 28618,
+ [SMALL_STATE(763)] = 28669,
+ [SMALL_STATE(764)] = 28762,
+ [SMALL_STATE(765)] = 28851,
+ [SMALL_STATE(766)] = 28944,
+ [SMALL_STATE(767)] = 29037,
+ [SMALL_STATE(768)] = 29130,
+ [SMALL_STATE(769)] = 29223,
+ [SMALL_STATE(770)] = 29316,
+ [SMALL_STATE(771)] = 29409,
+ [SMALL_STATE(772)] = 29502,
+ [SMALL_STATE(773)] = 29595,
+ [SMALL_STATE(774)] = 29688,
+ [SMALL_STATE(775)] = 29781,
+ [SMALL_STATE(776)] = 29874,
+ [SMALL_STATE(777)] = 29967,
+ [SMALL_STATE(778)] = 30060,
+ [SMALL_STATE(779)] = 30153,
+ [SMALL_STATE(780)] = 30242,
+ [SMALL_STATE(781)] = 30335,
+ [SMALL_STATE(782)] = 30424,
+ [SMALL_STATE(783)] = 30513,
+ [SMALL_STATE(784)] = 30606,
+ [SMALL_STATE(785)] = 30699,
+ [SMALL_STATE(786)] = 30788,
+ [SMALL_STATE(787)] = 30877,
+ [SMALL_STATE(788)] = 30966,
+ [SMALL_STATE(789)] = 31059,
+ [SMALL_STATE(790)] = 31152,
+ [SMALL_STATE(791)] = 31221,
+ [SMALL_STATE(792)] = 31314,
+ [SMALL_STATE(793)] = 31373,
+ [SMALL_STATE(794)] = 31454,
+ [SMALL_STATE(795)] = 31537,
+ [SMALL_STATE(796)] = 31602,
+ [SMALL_STATE(797)] = 31691,
+ [SMALL_STATE(798)] = 31784,
+ [SMALL_STATE(799)] = 31861,
+ [SMALL_STATE(800)] = 31940,
+ [SMALL_STATE(801)] = 32021,
+ [SMALL_STATE(802)] = 32084,
+ [SMALL_STATE(803)] = 32143,
+ [SMALL_STATE(804)] = 32236,
+ [SMALL_STATE(805)] = 32309,
+ [SMALL_STATE(806)] = 32402,
+ [SMALL_STATE(807)] = 32487,
+ [SMALL_STATE(808)] = 32580,
+ [SMALL_STATE(809)] = 32669,
+ [SMALL_STATE(810)] = 32762,
+ [SMALL_STATE(811)] = 32851,
+ [SMALL_STATE(812)] = 32944,
+ [SMALL_STATE(813)] = 33037,
+ [SMALL_STATE(814)] = 33130,
+ [SMALL_STATE(815)] = 33219,
+ [SMALL_STATE(816)] = 33308,
+ [SMALL_STATE(817)] = 33359,
+ [SMALL_STATE(818)] = 33452,
+ [SMALL_STATE(819)] = 33541,
+ [SMALL_STATE(820)] = 33629,
+ [SMALL_STATE(821)] = 33675,
+ [SMALL_STATE(822)] = 33763,
+ [SMALL_STATE(823)] = 33809,
+ [SMALL_STATE(824)] = 33895,
+ [SMALL_STATE(825)] = 33981,
+ [SMALL_STATE(826)] = 34069,
+ [SMALL_STATE(827)] = 34155,
+ [SMALL_STATE(828)] = 34241,
+ [SMALL_STATE(829)] = 34327,
+ [SMALL_STATE(830)] = 34413,
+ [SMALL_STATE(831)] = 34463,
+ [SMALL_STATE(832)] = 34553,
+ [SMALL_STATE(833)] = 34641,
+ [SMALL_STATE(834)] = 34729,
+ [SMALL_STATE(835)] = 34817,
+ [SMALL_STATE(836)] = 34905,
+ [SMALL_STATE(837)] = 34993,
+ [SMALL_STATE(838)] = 35081,
+ [SMALL_STATE(839)] = 35169,
+ [SMALL_STATE(840)] = 35237,
+ [SMALL_STATE(841)] = 35295,
+ [SMALL_STATE(842)] = 35375,
+ [SMALL_STATE(843)] = 35457,
+ [SMALL_STATE(844)] = 35521,
+ [SMALL_STATE(845)] = 35597,
+ [SMALL_STATE(846)] = 35675,
+ [SMALL_STATE(847)] = 35755,
+ [SMALL_STATE(848)] = 35817,
+ [SMALL_STATE(849)] = 35875,
+ [SMALL_STATE(850)] = 35947,
+ [SMALL_STATE(851)] = 36031,
+ [SMALL_STATE(852)] = 36119,
+ [SMALL_STATE(853)] = 36207,
+ [SMALL_STATE(854)] = 36295,
+ [SMALL_STATE(855)] = 36383,
+ [SMALL_STATE(856)] = 36471,
+ [SMALL_STATE(857)] = 36559,
+ [SMALL_STATE(858)] = 36646,
+ [SMALL_STATE(859)] = 36733,
+ [SMALL_STATE(860)] = 36820,
+ [SMALL_STATE(861)] = 36907,
+ [SMALL_STATE(862)] = 36994,
+ [SMALL_STATE(863)] = 37081,
+ [SMALL_STATE(864)] = 37170,
+ [SMALL_STATE(865)] = 37257,
+ [SMALL_STATE(866)] = 37344,
+ [SMALL_STATE(867)] = 37422,
+ [SMALL_STATE(868)] = 37506,
+ [SMALL_STATE(869)] = 37590,
+ [SMALL_STATE(870)] = 37660,
+ [SMALL_STATE(871)] = 37731,
+ [SMALL_STATE(872)] = 37802,
+ [SMALL_STATE(873)] = 37873,
+ [SMALL_STATE(874)] = 37944,
+ [SMALL_STATE(875)] = 38015,
+ [SMALL_STATE(876)] = 38080,
+ [SMALL_STATE(877)] = 38151,
+ [SMALL_STATE(878)] = 38208,
+ [SMALL_STATE(879)] = 38265,
+ [SMALL_STATE(880)] = 38336,
+ [SMALL_STATE(881)] = 38388,
+ [SMALL_STATE(882)] = 38444,
+ [SMALL_STATE(883)] = 38502,
+ [SMALL_STATE(884)] = 38558,
+ [SMALL_STATE(885)] = 38616,
+ [SMALL_STATE(886)] = 38672,
+ [SMALL_STATE(887)] = 38730,
+ [SMALL_STATE(888)] = 38788,
+ [SMALL_STATE(889)] = 38846,
+ [SMALL_STATE(890)] = 38902,
+ [SMALL_STATE(891)] = 38960,
+ [SMALL_STATE(892)] = 39016,
+ [SMALL_STATE(893)] = 39072,
+ [SMALL_STATE(894)] = 39123,
+ [SMALL_STATE(895)] = 39174,
+ [SMALL_STATE(896)] = 39227,
+ [SMALL_STATE(897)] = 39278,
+ [SMALL_STATE(898)] = 39329,
+ [SMALL_STATE(899)] = 39380,
+ [SMALL_STATE(900)] = 39431,
+ [SMALL_STATE(901)] = 39481,
+ [SMALL_STATE(902)] = 39531,
+ [SMALL_STATE(903)] = 39583,
+ [SMALL_STATE(904)] = 39643,
+ [SMALL_STATE(905)] = 39691,
+ [SMALL_STATE(906)] = 39736,
+ [SMALL_STATE(907)] = 39779,
+ [SMALL_STATE(908)] = 39824,
+ [SMALL_STATE(909)] = 39867,
+ [SMALL_STATE(910)] = 39914,
+ [SMALL_STATE(911)] = 39969,
+ [SMALL_STATE(912)] = 40014,
+ [SMALL_STATE(913)] = 40057,
+ [SMALL_STATE(914)] = 40104,
+ [SMALL_STATE(915)] = 40149,
+ [SMALL_STATE(916)] = 40204,
+ [SMALL_STATE(917)] = 40242,
+ [SMALL_STATE(918)] = 40276,
+ [SMALL_STATE(919)] = 40314,
+ [SMALL_STATE(920)] = 40352,
+ [SMALL_STATE(921)] = 40390,
+ [SMALL_STATE(922)] = 40428,
+ [SMALL_STATE(923)] = 40468,
+ [SMALL_STATE(924)] = 40506,
+ [SMALL_STATE(925)] = 40533,
+ [SMALL_STATE(926)] = 40560,
+ [SMALL_STATE(927)] = 40587,
+ [SMALL_STATE(928)] = 40614,
+ [SMALL_STATE(929)] = 40641,
+ [SMALL_STATE(930)] = 40668,
+ [SMALL_STATE(931)] = 40695,
+ [SMALL_STATE(932)] = 40722,
+ [SMALL_STATE(933)] = 40749,
+ [SMALL_STATE(934)] = 40776,
+ [SMALL_STATE(935)] = 40803,
+ [SMALL_STATE(936)] = 40830,
+ [SMALL_STATE(937)] = 40857,
+ [SMALL_STATE(938)] = 40884,
+ [SMALL_STATE(939)] = 40911,
+ [SMALL_STATE(940)] = 40938,
+ [SMALL_STATE(941)] = 40965,
+ [SMALL_STATE(942)] = 40992,
+ [SMALL_STATE(943)] = 41019,
+ [SMALL_STATE(944)] = 41046,
+ [SMALL_STATE(945)] = 41079,
+ [SMALL_STATE(946)] = 41106,
+ [SMALL_STATE(947)] = 41133,
+ [SMALL_STATE(948)] = 41160,
+ [SMALL_STATE(949)] = 41189,
+ [SMALL_STATE(950)] = 41216,
+ [SMALL_STATE(951)] = 41243,
+ [SMALL_STATE(952)] = 41270,
+ [SMALL_STATE(953)] = 41297,
+ [SMALL_STATE(954)] = 41326,
+ [SMALL_STATE(955)] = 41353,
+ [SMALL_STATE(956)] = 41380,
+ [SMALL_STATE(957)] = 41406,
+ [SMALL_STATE(958)] = 41432,
+ [SMALL_STATE(959)] = 41460,
+ [SMALL_STATE(960)] = 41498,
+ [SMALL_STATE(961)] = 41540,
+ [SMALL_STATE(962)] = 41580,
+ [SMALL_STATE(963)] = 41606,
+ [SMALL_STATE(964)] = 41632,
+ [SMALL_STATE(965)] = 41678,
+ [SMALL_STATE(966)] = 41720,
+ [SMALL_STATE(967)] = 41764,
+ [SMALL_STATE(968)] = 41804,
+ [SMALL_STATE(969)] = 41846,
+ [SMALL_STATE(970)] = 41872,
+ [SMALL_STATE(971)] = 41914,
+ [SMALL_STATE(972)] = 41940,
+ [SMALL_STATE(973)] = 41975,
+ [SMALL_STATE(974)] = 42010,
+ [SMALL_STATE(975)] = 42045,
+ [SMALL_STATE(976)] = 42080,
+ [SMALL_STATE(977)] = 42105,
+ [SMALL_STATE(978)] = 42140,
+ [SMALL_STATE(979)] = 42181,
+ [SMALL_STATE(980)] = 42216,
+ [SMALL_STATE(981)] = 42255,
+ [SMALL_STATE(982)] = 42298,
+ [SMALL_STATE(983)] = 42333,
+ [SMALL_STATE(984)] = 42368,
+ [SMALL_STATE(985)] = 42409,
+ [SMALL_STATE(986)] = 42444,
+ [SMALL_STATE(987)] = 42479,
+ [SMALL_STATE(988)] = 42514,
+ [SMALL_STATE(989)] = 42553,
+ [SMALL_STATE(990)] = 42588,
+ [SMALL_STATE(991)] = 42623,
+ [SMALL_STATE(992)] = 42658,
+ [SMALL_STATE(993)] = 42693,
+ [SMALL_STATE(994)] = 42728,
+ [SMALL_STATE(995)] = 42763,
+ [SMALL_STATE(996)] = 42798,
+ [SMALL_STATE(997)] = 42833,
+ [SMALL_STATE(998)] = 42868,
+ [SMALL_STATE(999)] = 42903,
+ [SMALL_STATE(1000)] = 42938,
+ [SMALL_STATE(1001)] = 42963,
+ [SMALL_STATE(1002)] = 42988,
+ [SMALL_STATE(1003)] = 43013,
+ [SMALL_STATE(1004)] = 43056,
+ [SMALL_STATE(1005)] = 43081,
+ [SMALL_STATE(1006)] = 43116,
+ [SMALL_STATE(1007)] = 43141,
+ [SMALL_STATE(1008)] = 43176,
+ [SMALL_STATE(1009)] = 43208,
+ [SMALL_STATE(1010)] = 43240,
+ [SMALL_STATE(1011)] = 43272,
+ [SMALL_STATE(1012)] = 43304,
+ [SMALL_STATE(1013)] = 43336,
+ [SMALL_STATE(1014)] = 43368,
+ [SMALL_STATE(1015)] = 43400,
+ [SMALL_STATE(1016)] = 43422,
+ [SMALL_STATE(1017)] = 43454,
+ [SMALL_STATE(1018)] = 43486,
+ [SMALL_STATE(1019)] = 43508,
+ [SMALL_STATE(1020)] = 43530,
+ [SMALL_STATE(1021)] = 43562,
+ [SMALL_STATE(1022)] = 43594,
+ [SMALL_STATE(1023)] = 43626,
+ [SMALL_STATE(1024)] = 43648,
+ [SMALL_STATE(1025)] = 43680,
+ [SMALL_STATE(1026)] = 43712,
+ [SMALL_STATE(1027)] = 43744,
+ [SMALL_STATE(1028)] = 43776,
+ [SMALL_STATE(1029)] = 43808,
+ [SMALL_STATE(1030)] = 43830,
+ [SMALL_STATE(1031)] = 43862,
+ [SMALL_STATE(1032)] = 43899,
+ [SMALL_STATE(1033)] = 43929,
+ [SMALL_STATE(1034)] = 43959,
+ [SMALL_STATE(1035)] = 43995,
+ [SMALL_STATE(1036)] = 44025,
+ [SMALL_STATE(1037)] = 44061,
+ [SMALL_STATE(1038)] = 44091,
+ [SMALL_STATE(1039)] = 44121,
+ [SMALL_STATE(1040)] = 44151,
+ [SMALL_STATE(1041)] = 44187,
+ [SMALL_STATE(1042)] = 44217,
+ [SMALL_STATE(1043)] = 44253,
+ [SMALL_STATE(1044)] = 44283,
+ [SMALL_STATE(1045)] = 44316,
+ [SMALL_STATE(1046)] = 44343,
+ [SMALL_STATE(1047)] = 44376,
+ [SMALL_STATE(1048)] = 44409,
+ [SMALL_STATE(1049)] = 44442,
+ [SMALL_STATE(1050)] = 44475,
+ [SMALL_STATE(1051)] = 44508,
+ [SMALL_STATE(1052)] = 44541,
+ [SMALL_STATE(1053)] = 44574,
+ [SMALL_STATE(1054)] = 44600,
+ [SMALL_STATE(1055)] = 44630,
+ [SMALL_STATE(1056)] = 44660,
+ [SMALL_STATE(1057)] = 44686,
+ [SMALL_STATE(1058)] = 44716,
+ [SMALL_STATE(1059)] = 44746,
+ [SMALL_STATE(1060)] = 44776,
+ [SMALL_STATE(1061)] = 44806,
+ [SMALL_STATE(1062)] = 44836,
+ [SMALL_STATE(1063)] = 44866,
+ [SMALL_STATE(1064)] = 44896,
+ [SMALL_STATE(1065)] = 44926,
+ [SMALL_STATE(1066)] = 44956,
+ [SMALL_STATE(1067)] = 44986,
+ [SMALL_STATE(1068)] = 45016,
+ [SMALL_STATE(1069)] = 45046,
+ [SMALL_STATE(1070)] = 45076,
+ [SMALL_STATE(1071)] = 45104,
+ [SMALL_STATE(1072)] = 45134,
+ [SMALL_STATE(1073)] = 45164,
+ [SMALL_STATE(1074)] = 45194,
+ [SMALL_STATE(1075)] = 45224,
+ [SMALL_STATE(1076)] = 45254,
+ [SMALL_STATE(1077)] = 45281,
+ [SMALL_STATE(1078)] = 45308,
+ [SMALL_STATE(1079)] = 45326,
+ [SMALL_STATE(1080)] = 45348,
+ [SMALL_STATE(1081)] = 45370,
+ [SMALL_STATE(1082)] = 45392,
+ [SMALL_STATE(1083)] = 45416,
+ [SMALL_STATE(1084)] = 45440,
+ [SMALL_STATE(1085)] = 45464,
+ [SMALL_STATE(1086)] = 45488,
+ [SMALL_STATE(1087)] = 45506,
+ [SMALL_STATE(1088)] = 45530,
+ [SMALL_STATE(1089)] = 45544,
+ [SMALL_STATE(1090)] = 45558,
+ [SMALL_STATE(1091)] = 45582,
+ [SMALL_STATE(1092)] = 45606,
+ [SMALL_STATE(1093)] = 45626,
+ [SMALL_STATE(1094)] = 45640,
+ [SMALL_STATE(1095)] = 45660,
+ [SMALL_STATE(1096)] = 45682,
+ [SMALL_STATE(1097)] = 45706,
+ [SMALL_STATE(1098)] = 45730,
+ [SMALL_STATE(1099)] = 45752,
+ [SMALL_STATE(1100)] = 45774,
+ [SMALL_STATE(1101)] = 45788,
+ [SMALL_STATE(1102)] = 45812,
+ [SMALL_STATE(1103)] = 45826,
+ [SMALL_STATE(1104)] = 45845,
+ [SMALL_STATE(1105)] = 45864,
+ [SMALL_STATE(1106)] = 45879,
+ [SMALL_STATE(1107)] = 45898,
+ [SMALL_STATE(1108)] = 45919,
+ [SMALL_STATE(1109)] = 45938,
+ [SMALL_STATE(1110)] = 45959,
+ [SMALL_STATE(1111)] = 45972,
+ [SMALL_STATE(1112)] = 45993,
+ [SMALL_STATE(1113)] = 46006,
+ [SMALL_STATE(1114)] = 46025,
+ [SMALL_STATE(1115)] = 46046,
+ [SMALL_STATE(1116)] = 46065,
+ [SMALL_STATE(1117)] = 46078,
+ [SMALL_STATE(1118)] = 46097,
+ [SMALL_STATE(1119)] = 46110,
+ [SMALL_STATE(1120)] = 46127,
+ [SMALL_STATE(1121)] = 46140,
+ [SMALL_STATE(1122)] = 46153,
+ [SMALL_STATE(1123)] = 46172,
+ [SMALL_STATE(1124)] = 46191,
+ [SMALL_STATE(1125)] = 46206,
+ [SMALL_STATE(1126)] = 46227,
+ [SMALL_STATE(1127)] = 46240,
+ [SMALL_STATE(1128)] = 46253,
+ [SMALL_STATE(1129)] = 46266,
+ [SMALL_STATE(1130)] = 46279,
+ [SMALL_STATE(1131)] = 46300,
+ [SMALL_STATE(1132)] = 46319,
+ [SMALL_STATE(1133)] = 46338,
+ [SMALL_STATE(1134)] = 46356,
+ [SMALL_STATE(1135)] = 46370,
+ [SMALL_STATE(1136)] = 46384,
+ [SMALL_STATE(1137)] = 46398,
+ [SMALL_STATE(1138)] = 46418,
+ [SMALL_STATE(1139)] = 46430,
+ [SMALL_STATE(1140)] = 46450,
+ [SMALL_STATE(1141)] = 46464,
+ [SMALL_STATE(1142)] = 46484,
+ [SMALL_STATE(1143)] = 46504,
+ [SMALL_STATE(1144)] = 46518,
+ [SMALL_STATE(1145)] = 46538,
+ [SMALL_STATE(1146)] = 46558,
+ [SMALL_STATE(1147)] = 46572,
+ [SMALL_STATE(1148)] = 46586,
+ [SMALL_STATE(1149)] = 46606,
+ [SMALL_STATE(1150)] = 46620,
+ [SMALL_STATE(1151)] = 46634,
+ [SMALL_STATE(1152)] = 46654,
+ [SMALL_STATE(1153)] = 46668,
+ [SMALL_STATE(1154)] = 46688,
+ [SMALL_STATE(1155)] = 46702,
+ [SMALL_STATE(1156)] = 46716,
+ [SMALL_STATE(1157)] = 46736,
+ [SMALL_STATE(1158)] = 46750,
+ [SMALL_STATE(1159)] = 46770,
+ [SMALL_STATE(1160)] = 46784,
+ [SMALL_STATE(1161)] = 46800,
+ [SMALL_STATE(1162)] = 46820,
+ [SMALL_STATE(1163)] = 46834,
+ [SMALL_STATE(1164)] = 46848,
+ [SMALL_STATE(1165)] = 46868,
+ [SMALL_STATE(1166)] = 46882,
+ [SMALL_STATE(1167)] = 46902,
+ [SMALL_STATE(1168)] = 46914,
+ [SMALL_STATE(1169)] = 46928,
+ [SMALL_STATE(1170)] = 46948,
+ [SMALL_STATE(1171)] = 46968,
+ [SMALL_STATE(1172)] = 46986,
+ [SMALL_STATE(1173)] = 47000,
+ [SMALL_STATE(1174)] = 47014,
+ [SMALL_STATE(1175)] = 47034,
+ [SMALL_STATE(1176)] = 47048,
+ [SMALL_STATE(1177)] = 47066,
+ [SMALL_STATE(1178)] = 47080,
+ [SMALL_STATE(1179)] = 47094,
+ [SMALL_STATE(1180)] = 47108,
+ [SMALL_STATE(1181)] = 47122,
+ [SMALL_STATE(1182)] = 47136,
+ [SMALL_STATE(1183)] = 47150,
+ [SMALL_STATE(1184)] = 47164,
+ [SMALL_STATE(1185)] = 47178,
+ [SMALL_STATE(1186)] = 47198,
+ [SMALL_STATE(1187)] = 47212,
+ [SMALL_STATE(1188)] = 47232,
+ [SMALL_STATE(1189)] = 47252,
+ [SMALL_STATE(1190)] = 47266,
+ [SMALL_STATE(1191)] = 47286,
+ [SMALL_STATE(1192)] = 47302,
+ [SMALL_STATE(1193)] = 47316,
+ [SMALL_STATE(1194)] = 47330,
+ [SMALL_STATE(1195)] = 47346,
+ [SMALL_STATE(1196)] = 47360,
+ [SMALL_STATE(1197)] = 47372,
+ [SMALL_STATE(1198)] = 47392,
+ [SMALL_STATE(1199)] = 47406,
+ [SMALL_STATE(1200)] = 47420,
+ [SMALL_STATE(1201)] = 47437,
+ [SMALL_STATE(1202)] = 47454,
+ [SMALL_STATE(1203)] = 47469,
+ [SMALL_STATE(1204)] = 47486,
+ [SMALL_STATE(1205)] = 47503,
+ [SMALL_STATE(1206)] = 47522,
+ [SMALL_STATE(1207)] = 47539,
+ [SMALL_STATE(1208)] = 47556,
+ [SMALL_STATE(1209)] = 47573,
+ [SMALL_STATE(1210)] = 47592,
+ [SMALL_STATE(1211)] = 47609,
+ [SMALL_STATE(1212)] = 47624,
+ [SMALL_STATE(1213)] = 47641,
+ [SMALL_STATE(1214)] = 47660,
+ [SMALL_STATE(1215)] = 47677,
+ [SMALL_STATE(1216)] = 47688,
+ [SMALL_STATE(1217)] = 47699,
+ [SMALL_STATE(1218)] = 47716,
+ [SMALL_STATE(1219)] = 47735,
+ [SMALL_STATE(1220)] = 47748,
+ [SMALL_STATE(1221)] = 47765,
+ [SMALL_STATE(1222)] = 47780,
+ [SMALL_STATE(1223)] = 47797,
+ [SMALL_STATE(1224)] = 47812,
+ [SMALL_STATE(1225)] = 47829,
+ [SMALL_STATE(1226)] = 47846,
+ [SMALL_STATE(1227)] = 47863,
+ [SMALL_STATE(1228)] = 47880,
+ [SMALL_STATE(1229)] = 47897,
+ [SMALL_STATE(1230)] = 47914,
+ [SMALL_STATE(1231)] = 47931,
+ [SMALL_STATE(1232)] = 47946,
+ [SMALL_STATE(1233)] = 47963,
+ [SMALL_STATE(1234)] = 47980,
+ [SMALL_STATE(1235)] = 47997,
+ [SMALL_STATE(1236)] = 48014,
+ [SMALL_STATE(1237)] = 48031,
+ [SMALL_STATE(1238)] = 48048,
+ [SMALL_STATE(1239)] = 48061,
+ [SMALL_STATE(1240)] = 48078,
+ [SMALL_STATE(1241)] = 48089,
+ [SMALL_STATE(1242)] = 48106,
+ [SMALL_STATE(1243)] = 48121,
+ [SMALL_STATE(1244)] = 48138,
+ [SMALL_STATE(1245)] = 48155,
+ [SMALL_STATE(1246)] = 48172,
+ [SMALL_STATE(1247)] = 48189,
+ [SMALL_STATE(1248)] = 48206,
+ [SMALL_STATE(1249)] = 48221,
+ [SMALL_STATE(1250)] = 48238,
+ [SMALL_STATE(1251)] = 48255,
+ [SMALL_STATE(1252)] = 48270,
+ [SMALL_STATE(1253)] = 48287,
+ [SMALL_STATE(1254)] = 48304,
+ [SMALL_STATE(1255)] = 48321,
+ [SMALL_STATE(1256)] = 48336,
+ [SMALL_STATE(1257)] = 48347,
+ [SMALL_STATE(1258)] = 48362,
+ [SMALL_STATE(1259)] = 48379,
+ [SMALL_STATE(1260)] = 48396,
+ [SMALL_STATE(1261)] = 48411,
+ [SMALL_STATE(1262)] = 48428,
+ [SMALL_STATE(1263)] = 48445,
+ [SMALL_STATE(1264)] = 48464,
+ [SMALL_STATE(1265)] = 48483,
+ [SMALL_STATE(1266)] = 48494,
+ [SMALL_STATE(1267)] = 48511,
+ [SMALL_STATE(1268)] = 48528,
+ [SMALL_STATE(1269)] = 48543,
+ [SMALL_STATE(1270)] = 48560,
+ [SMALL_STATE(1271)] = 48571,
+ [SMALL_STATE(1272)] = 48586,
+ [SMALL_STATE(1273)] = 48603,
+ [SMALL_STATE(1274)] = 48620,
+ [SMALL_STATE(1275)] = 48634,
+ [SMALL_STATE(1276)] = 48648,
+ [SMALL_STATE(1277)] = 48662,
+ [SMALL_STATE(1278)] = 48676,
+ [SMALL_STATE(1279)] = 48690,
+ [SMALL_STATE(1280)] = 48700,
+ [SMALL_STATE(1281)] = 48712,
+ [SMALL_STATE(1282)] = 48726,
+ [SMALL_STATE(1283)] = 48738,
+ [SMALL_STATE(1284)] = 48752,
+ [SMALL_STATE(1285)] = 48766,
+ [SMALL_STATE(1286)] = 48780,
+ [SMALL_STATE(1287)] = 48794,
+ [SMALL_STATE(1288)] = 48808,
+ [SMALL_STATE(1289)] = 48822,
+ [SMALL_STATE(1290)] = 48836,
+ [SMALL_STATE(1291)] = 48850,
+ [SMALL_STATE(1292)] = 48864,
+ [SMALL_STATE(1293)] = 48878,
+ [SMALL_STATE(1294)] = 48888,
+ [SMALL_STATE(1295)] = 48900,
+ [SMALL_STATE(1296)] = 48914,
+ [SMALL_STATE(1297)] = 48928,
+ [SMALL_STATE(1298)] = 48942,
+ [SMALL_STATE(1299)] = 48954,
+ [SMALL_STATE(1300)] = 48968,
+ [SMALL_STATE(1301)] = 48980,
+ [SMALL_STATE(1302)] = 48994,
+ [SMALL_STATE(1303)] = 49006,
+ [SMALL_STATE(1304)] = 49020,
+ [SMALL_STATE(1305)] = 49034,
+ [SMALL_STATE(1306)] = 49048,
+ [SMALL_STATE(1307)] = 49062,
+ [SMALL_STATE(1308)] = 49076,
+ [SMALL_STATE(1309)] = 49086,
+ [SMALL_STATE(1310)] = 49100,
+ [SMALL_STATE(1311)] = 49114,
+ [SMALL_STATE(1312)] = 49128,
+ [SMALL_STATE(1313)] = 49142,
+ [SMALL_STATE(1314)] = 49154,
+ [SMALL_STATE(1315)] = 49168,
+ [SMALL_STATE(1316)] = 49182,
+ [SMALL_STATE(1317)] = 49196,
+ [SMALL_STATE(1318)] = 49210,
+ [SMALL_STATE(1319)] = 49220,
+ [SMALL_STATE(1320)] = 49234,
+ [SMALL_STATE(1321)] = 49248,
+ [SMALL_STATE(1322)] = 49262,
+ [SMALL_STATE(1323)] = 49276,
+ [SMALL_STATE(1324)] = 49290,
+ [SMALL_STATE(1325)] = 49304,
+ [SMALL_STATE(1326)] = 49316,
+ [SMALL_STATE(1327)] = 49330,
+ [SMALL_STATE(1328)] = 49340,
+ [SMALL_STATE(1329)] = 49354,
+ [SMALL_STATE(1330)] = 49366,
+ [SMALL_STATE(1331)] = 49380,
+ [SMALL_STATE(1332)] = 49390,
+ [SMALL_STATE(1333)] = 49404,
+ [SMALL_STATE(1334)] = 49418,
+ [SMALL_STATE(1335)] = 49432,
+ [SMALL_STATE(1336)] = 49446,
+ [SMALL_STATE(1337)] = 49460,
+ [SMALL_STATE(1338)] = 49472,
+ [SMALL_STATE(1339)] = 49486,
+ [SMALL_STATE(1340)] = 49500,
+ [SMALL_STATE(1341)] = 49512,
+ [SMALL_STATE(1342)] = 49526,
+ [SMALL_STATE(1343)] = 49538,
+ [SMALL_STATE(1344)] = 49552,
+ [SMALL_STATE(1345)] = 49566,
+ [SMALL_STATE(1346)] = 49580,
+ [SMALL_STATE(1347)] = 49594,
+ [SMALL_STATE(1348)] = 49608,
+ [SMALL_STATE(1349)] = 49622,
+ [SMALL_STATE(1350)] = 49636,
+ [SMALL_STATE(1351)] = 49650,
+ [SMALL_STATE(1352)] = 49664,
+ [SMALL_STATE(1353)] = 49678,
+ [SMALL_STATE(1354)] = 49692,
+ [SMALL_STATE(1355)] = 49706,
+ [SMALL_STATE(1356)] = 49720,
+ [SMALL_STATE(1357)] = 49734,
+ [SMALL_STATE(1358)] = 49746,
+ [SMALL_STATE(1359)] = 49760,
+ [SMALL_STATE(1360)] = 49770,
+ [SMALL_STATE(1361)] = 49780,
+ [SMALL_STATE(1362)] = 49794,
+ [SMALL_STATE(1363)] = 49808,
+ [SMALL_STATE(1364)] = 49822,
+ [SMALL_STATE(1365)] = 49836,
+ [SMALL_STATE(1366)] = 49850,
+ [SMALL_STATE(1367)] = 49864,
+ [SMALL_STATE(1368)] = 49878,
+ [SMALL_STATE(1369)] = 49892,
+ [SMALL_STATE(1370)] = 49906,
+ [SMALL_STATE(1371)] = 49920,
+ [SMALL_STATE(1372)] = 49931,
+ [SMALL_STATE(1373)] = 49942,
+ [SMALL_STATE(1374)] = 49953,
+ [SMALL_STATE(1375)] = 49964,
+ [SMALL_STATE(1376)] = 49975,
+ [SMALL_STATE(1377)] = 49986,
+ [SMALL_STATE(1378)] = 49997,
+ [SMALL_STATE(1379)] = 50008,
+ [SMALL_STATE(1380)] = 50017,
+ [SMALL_STATE(1381)] = 50028,
+ [SMALL_STATE(1382)] = 50037,
+ [SMALL_STATE(1383)] = 50046,
+ [SMALL_STATE(1384)] = 50055,
+ [SMALL_STATE(1385)] = 50066,
+ [SMALL_STATE(1386)] = 50077,
+ [SMALL_STATE(1387)] = 50088,
+ [SMALL_STATE(1388)] = 50099,
+ [SMALL_STATE(1389)] = 50110,
+ [SMALL_STATE(1390)] = 50121,
+ [SMALL_STATE(1391)] = 50132,
+ [SMALL_STATE(1392)] = 50143,
+ [SMALL_STATE(1393)] = 50154,
+ [SMALL_STATE(1394)] = 50165,
+ [SMALL_STATE(1395)] = 50176,
+ [SMALL_STATE(1396)] = 50187,
+ [SMALL_STATE(1397)] = 50198,
+ [SMALL_STATE(1398)] = 50207,
+ [SMALL_STATE(1399)] = 50218,
+ [SMALL_STATE(1400)] = 50227,
+ [SMALL_STATE(1401)] = 50238,
+ [SMALL_STATE(1402)] = 50247,
+ [SMALL_STATE(1403)] = 50258,
+ [SMALL_STATE(1404)] = 50269,
+ [SMALL_STATE(1405)] = 50280,
+ [SMALL_STATE(1406)] = 50291,
+ [SMALL_STATE(1407)] = 50300,
+ [SMALL_STATE(1408)] = 50309,
+ [SMALL_STATE(1409)] = 50320,
+ [SMALL_STATE(1410)] = 50331,
+ [SMALL_STATE(1411)] = 50342,
+ [SMALL_STATE(1412)] = 50353,
+ [SMALL_STATE(1413)] = 50364,
+ [SMALL_STATE(1414)] = 50375,
+ [SMALL_STATE(1415)] = 50386,
+ [SMALL_STATE(1416)] = 50397,
+ [SMALL_STATE(1417)] = 50408,
+ [SMALL_STATE(1418)] = 50419,
+ [SMALL_STATE(1419)] = 50430,
+ [SMALL_STATE(1420)] = 50441,
+ [SMALL_STATE(1421)] = 50452,
+ [SMALL_STATE(1422)] = 50461,
+ [SMALL_STATE(1423)] = 50472,
+ [SMALL_STATE(1424)] = 50481,
+ [SMALL_STATE(1425)] = 50492,
+ [SMALL_STATE(1426)] = 50503,
+ [SMALL_STATE(1427)] = 50514,
+ [SMALL_STATE(1428)] = 50525,
+ [SMALL_STATE(1429)] = 50536,
+ [SMALL_STATE(1430)] = 50545,
+ [SMALL_STATE(1431)] = 50554,
+ [SMALL_STATE(1432)] = 50565,
+ [SMALL_STATE(1433)] = 50576,
+ [SMALL_STATE(1434)] = 50587,
+ [SMALL_STATE(1435)] = 50598,
+ [SMALL_STATE(1436)] = 50607,
+ [SMALL_STATE(1437)] = 50618,
+ [SMALL_STATE(1438)] = 50629,
+ [SMALL_STATE(1439)] = 50640,
+ [SMALL_STATE(1440)] = 50651,
+ [SMALL_STATE(1441)] = 50662,
+ [SMALL_STATE(1442)] = 50673,
+ [SMALL_STATE(1443)] = 50684,
+ [SMALL_STATE(1444)] = 50695,
+ [SMALL_STATE(1445)] = 50706,
+ [SMALL_STATE(1446)] = 50717,
+ [SMALL_STATE(1447)] = 50728,
+ [SMALL_STATE(1448)] = 50737,
+ [SMALL_STATE(1449)] = 50746,
+ [SMALL_STATE(1450)] = 50757,
+ [SMALL_STATE(1451)] = 50768,
+ [SMALL_STATE(1452)] = 50777,
+ [SMALL_STATE(1453)] = 50788,
+ [SMALL_STATE(1454)] = 50797,
+ [SMALL_STATE(1455)] = 50806,
+ [SMALL_STATE(1456)] = 50815,
+ [SMALL_STATE(1457)] = 50826,
+ [SMALL_STATE(1458)] = 50837,
+ [SMALL_STATE(1459)] = 50848,
+ [SMALL_STATE(1460)] = 50859,
+ [SMALL_STATE(1461)] = 50870,
+ [SMALL_STATE(1462)] = 50879,
+ [SMALL_STATE(1463)] = 50890,
+ [SMALL_STATE(1464)] = 50901,
+ [SMALL_STATE(1465)] = 50912,
+ [SMALL_STATE(1466)] = 50923,
+ [SMALL_STATE(1467)] = 50934,
+ [SMALL_STATE(1468)] = 50945,
+ [SMALL_STATE(1469)] = 50954,
+ [SMALL_STATE(1470)] = 50965,
+ [SMALL_STATE(1471)] = 50976,
+ [SMALL_STATE(1472)] = 50987,
+ [SMALL_STATE(1473)] = 50998,
+ [SMALL_STATE(1474)] = 51009,
+ [SMALL_STATE(1475)] = 51020,
+ [SMALL_STATE(1476)] = 51031,
+ [SMALL_STATE(1477)] = 51040,
+ [SMALL_STATE(1478)] = 51051,
+ [SMALL_STATE(1479)] = 51062,
+ [SMALL_STATE(1480)] = 51071,
+ [SMALL_STATE(1481)] = 51082,
+ [SMALL_STATE(1482)] = 51093,
+ [SMALL_STATE(1483)] = 51104,
+ [SMALL_STATE(1484)] = 51113,
+ [SMALL_STATE(1485)] = 51124,
+ [SMALL_STATE(1486)] = 51135,
+ [SMALL_STATE(1487)] = 51146,
+ [SMALL_STATE(1488)] = 51157,
+ [SMALL_STATE(1489)] = 51168,
+ [SMALL_STATE(1490)] = 51179,
+ [SMALL_STATE(1491)] = 51188,
+ [SMALL_STATE(1492)] = 51197,
+ [SMALL_STATE(1493)] = 51208,
+ [SMALL_STATE(1494)] = 51219,
+ [SMALL_STATE(1495)] = 51230,
+ [SMALL_STATE(1496)] = 51241,
+ [SMALL_STATE(1497)] = 51252,
+ [SMALL_STATE(1498)] = 51263,
+ [SMALL_STATE(1499)] = 51274,
+ [SMALL_STATE(1500)] = 51285,
+ [SMALL_STATE(1501)] = 51296,
+ [SMALL_STATE(1502)] = 51307,
+ [SMALL_STATE(1503)] = 51318,
+ [SMALL_STATE(1504)] = 51329,
+ [SMALL_STATE(1505)] = 51340,
+ [SMALL_STATE(1506)] = 51351,
+ [SMALL_STATE(1507)] = 51362,
+ [SMALL_STATE(1508)] = 51373,
+ [SMALL_STATE(1509)] = 51384,
+ [SMALL_STATE(1510)] = 51395,
+ [SMALL_STATE(1511)] = 51406,
+ [SMALL_STATE(1512)] = 51417,
+ [SMALL_STATE(1513)] = 51428,
+ [SMALL_STATE(1514)] = 51439,
+ [SMALL_STATE(1515)] = 51450,
+ [SMALL_STATE(1516)] = 51461,
+ [SMALL_STATE(1517)] = 51472,
+ [SMALL_STATE(1518)] = 51483,
+ [SMALL_STATE(1519)] = 51494,
+ [SMALL_STATE(1520)] = 51505,
+ [SMALL_STATE(1521)] = 51516,
+ [SMALL_STATE(1522)] = 51527,
+ [SMALL_STATE(1523)] = 51538,
+ [SMALL_STATE(1524)] = 51549,
+ [SMALL_STATE(1525)] = 51560,
+ [SMALL_STATE(1526)] = 51571,
+ [SMALL_STATE(1527)] = 51582,
+ [SMALL_STATE(1528)] = 51593,
+ [SMALL_STATE(1529)] = 51604,
+ [SMALL_STATE(1530)] = 51615,
+ [SMALL_STATE(1531)] = 51626,
+ [SMALL_STATE(1532)] = 51637,
+ [SMALL_STATE(1533)] = 51648,
+ [SMALL_STATE(1534)] = 51659,
+ [SMALL_STATE(1535)] = 51670,
+ [SMALL_STATE(1536)] = 51681,
+ [SMALL_STATE(1537)] = 51692,
+ [SMALL_STATE(1538)] = 51703,
+ [SMALL_STATE(1539)] = 51714,
+ [SMALL_STATE(1540)] = 51725,
+ [SMALL_STATE(1541)] = 51736,
+ [SMALL_STATE(1542)] = 51747,
+ [SMALL_STATE(1543)] = 51758,
+ [SMALL_STATE(1544)] = 51769,
+ [SMALL_STATE(1545)] = 51780,
+ [SMALL_STATE(1546)] = 51791,
+ [SMALL_STATE(1547)] = 51802,
+ [SMALL_STATE(1548)] = 51813,
+ [SMALL_STATE(1549)] = 51824,
+ [SMALL_STATE(1550)] = 51833,
+ [SMALL_STATE(1551)] = 51844,
+ [SMALL_STATE(1552)] = 51855,
+ [SMALL_STATE(1553)] = 51866,
+ [SMALL_STATE(1554)] = 51877,
+ [SMALL_STATE(1555)] = 51888,
+ [SMALL_STATE(1556)] = 51899,
+ [SMALL_STATE(1557)] = 51910,
+ [SMALL_STATE(1558)] = 51921,
+ [SMALL_STATE(1559)] = 51932,
+ [SMALL_STATE(1560)] = 51941,
+ [SMALL_STATE(1561)] = 51952,
+ [SMALL_STATE(1562)] = 51961,
+ [SMALL_STATE(1563)] = 51970,
+ [SMALL_STATE(1564)] = 51981,
+ [SMALL_STATE(1565)] = 51992,
+ [SMALL_STATE(1566)] = 52003,
+ [SMALL_STATE(1567)] = 52014,
+ [SMALL_STATE(1568)] = 52025,
+ [SMALL_STATE(1569)] = 52034,
+ [SMALL_STATE(1570)] = 52045,
+ [SMALL_STATE(1571)] = 52054,
+ [SMALL_STATE(1572)] = 52065,
+ [SMALL_STATE(1573)] = 52076,
+ [SMALL_STATE(1574)] = 52087,
+ [SMALL_STATE(1575)] = 52098,
+ [SMALL_STATE(1576)] = 52109,
+ [SMALL_STATE(1577)] = 52120,
+ [SMALL_STATE(1578)] = 52131,
+ [SMALL_STATE(1579)] = 52142,
+ [SMALL_STATE(1580)] = 52153,
+ [SMALL_STATE(1581)] = 52164,
+ [SMALL_STATE(1582)] = 52175,
+ [SMALL_STATE(1583)] = 52186,
+ [SMALL_STATE(1584)] = 52197,
+ [SMALL_STATE(1585)] = 52208,
+ [SMALL_STATE(1586)] = 52219,
+ [SMALL_STATE(1587)] = 52230,
+ [SMALL_STATE(1588)] = 52241,
+ [SMALL_STATE(1589)] = 52252,
+ [SMALL_STATE(1590)] = 52263,
+ [SMALL_STATE(1591)] = 52274,
+ [SMALL_STATE(1592)] = 52285,
+ [SMALL_STATE(1593)] = 52296,
+ [SMALL_STATE(1594)] = 52307,
+ [SMALL_STATE(1595)] = 52318,
+ [SMALL_STATE(1596)] = 52329,
+ [SMALL_STATE(1597)] = 52340,
+ [SMALL_STATE(1598)] = 52351,
+ [SMALL_STATE(1599)] = 52362,
+ [SMALL_STATE(1600)] = 52373,
+ [SMALL_STATE(1601)] = 52384,
+ [SMALL_STATE(1602)] = 52395,
+ [SMALL_STATE(1603)] = 52406,
+ [SMALL_STATE(1604)] = 52417,
+ [SMALL_STATE(1605)] = 52428,
+ [SMALL_STATE(1606)] = 52439,
+ [SMALL_STATE(1607)] = 52450,
+ [SMALL_STATE(1608)] = 52461,
+ [SMALL_STATE(1609)] = 52472,
+ [SMALL_STATE(1610)] = 52483,
+ [SMALL_STATE(1611)] = 52494,
+ [SMALL_STATE(1612)] = 52505,
+ [SMALL_STATE(1613)] = 52516,
+ [SMALL_STATE(1614)] = 52527,
+ [SMALL_STATE(1615)] = 52538,
+ [SMALL_STATE(1616)] = 52546,
+ [SMALL_STATE(1617)] = 52554,
+ [SMALL_STATE(1618)] = 52562,
+ [SMALL_STATE(1619)] = 52570,
+ [SMALL_STATE(1620)] = 52578,
+ [SMALL_STATE(1621)] = 52586,
+ [SMALL_STATE(1622)] = 52594,
+ [SMALL_STATE(1623)] = 52604,
+ [SMALL_STATE(1624)] = 52612,
+ [SMALL_STATE(1625)] = 52620,
+ [SMALL_STATE(1626)] = 52628,
+ [SMALL_STATE(1627)] = 52636,
+ [SMALL_STATE(1628)] = 52644,
+ [SMALL_STATE(1629)] = 52652,
+ [SMALL_STATE(1630)] = 52660,
+ [SMALL_STATE(1631)] = 52670,
+ [SMALL_STATE(1632)] = 52678,
+ [SMALL_STATE(1633)] = 52686,
+ [SMALL_STATE(1634)] = 52694,
+ [SMALL_STATE(1635)] = 52702,
+ [SMALL_STATE(1636)] = 52712,
+ [SMALL_STATE(1637)] = 52722,
+ [SMALL_STATE(1638)] = 52730,
+ [SMALL_STATE(1639)] = 52738,
+ [SMALL_STATE(1640)] = 52746,
+ [SMALL_STATE(1641)] = 52754,
+ [SMALL_STATE(1642)] = 52762,
+ [SMALL_STATE(1643)] = 52770,
+ [SMALL_STATE(1644)] = 52778,
+ [SMALL_STATE(1645)] = 52786,
+ [SMALL_STATE(1646)] = 52794,
+ [SMALL_STATE(1647)] = 52802,
+ [SMALL_STATE(1648)] = 52810,
+ [SMALL_STATE(1649)] = 52818,
+ [SMALL_STATE(1650)] = 52826,
+ [SMALL_STATE(1651)] = 52834,
+ [SMALL_STATE(1652)] = 52842,
+ [SMALL_STATE(1653)] = 52850,
+ [SMALL_STATE(1654)] = 52858,
+ [SMALL_STATE(1655)] = 52866,
+ [SMALL_STATE(1656)] = 52874,
+ [SMALL_STATE(1657)] = 52882,
+ [SMALL_STATE(1658)] = 52890,
+ [SMALL_STATE(1659)] = 52898,
+ [SMALL_STATE(1660)] = 52906,
+ [SMALL_STATE(1661)] = 52914,
+ [SMALL_STATE(1662)] = 52922,
+ [SMALL_STATE(1663)] = 52930,
+ [SMALL_STATE(1664)] = 52938,
+ [SMALL_STATE(1665)] = 52946,
+ [SMALL_STATE(1666)] = 52954,
+ [SMALL_STATE(1667)] = 52962,
+ [SMALL_STATE(1668)] = 52970,
+ [SMALL_STATE(1669)] = 52978,
+ [SMALL_STATE(1670)] = 52986,
+ [SMALL_STATE(1671)] = 52994,
+ [SMALL_STATE(1672)] = 53002,
+ [SMALL_STATE(1673)] = 53010,
+ [SMALL_STATE(1674)] = 53018,
+ [SMALL_STATE(1675)] = 53026,
+ [SMALL_STATE(1676)] = 53034,
+ [SMALL_STATE(1677)] = 53042,
+ [SMALL_STATE(1678)] = 53050,
+ [SMALL_STATE(1679)] = 53058,
+ [SMALL_STATE(1680)] = 53066,
+ [SMALL_STATE(1681)] = 53074,
+ [SMALL_STATE(1682)] = 53082,
+ [SMALL_STATE(1683)] = 53090,
+ [SMALL_STATE(1684)] = 53098,
+ [SMALL_STATE(1685)] = 53106,
+ [SMALL_STATE(1686)] = 53114,
+ [SMALL_STATE(1687)] = 53122,
+ [SMALL_STATE(1688)] = 53130,
+ [SMALL_STATE(1689)] = 53140,
+ [SMALL_STATE(1690)] = 53148,
+ [SMALL_STATE(1691)] = 53156,
+ [SMALL_STATE(1692)] = 53164,
+ [SMALL_STATE(1693)] = 53174,
+ [SMALL_STATE(1694)] = 53182,
+ [SMALL_STATE(1695)] = 53190,
+ [SMALL_STATE(1696)] = 53198,
+ [SMALL_STATE(1697)] = 53206,
+ [SMALL_STATE(1698)] = 53214,
+ [SMALL_STATE(1699)] = 53224,
+ [SMALL_STATE(1700)] = 53232,
+ [SMALL_STATE(1701)] = 53240,
+ [SMALL_STATE(1702)] = 53248,
+ [SMALL_STATE(1703)] = 53256,
+ [SMALL_STATE(1704)] = 53264,
+ [SMALL_STATE(1705)] = 53272,
+ [SMALL_STATE(1706)] = 53280,
+ [SMALL_STATE(1707)] = 53288,
+ [SMALL_STATE(1708)] = 53296,
+ [SMALL_STATE(1709)] = 53304,
+ [SMALL_STATE(1710)] = 53312,
+ [SMALL_STATE(1711)] = 53320,
+ [SMALL_STATE(1712)] = 53328,
+ [SMALL_STATE(1713)] = 53336,
+ [SMALL_STATE(1714)] = 53344,
+ [SMALL_STATE(1715)] = 53354,
+ [SMALL_STATE(1716)] = 53362,
+ [SMALL_STATE(1717)] = 53370,
+ [SMALL_STATE(1718)] = 53378,
+ [SMALL_STATE(1719)] = 53386,
+ [SMALL_STATE(1720)] = 53394,
+ [SMALL_STATE(1721)] = 53402,
};
static const TSParseActionEntry ts_parse_actions[] = {
@@ -83711,1670 +81755,1640 @@ static const TSParseActionEntry ts_parse_actions[] = {
[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(462),
- [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
- [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301),
- [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
- [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048),
- [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621),
- [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107),
- [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420),
- [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118),
- [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434),
- [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590),
- [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379),
- [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
- [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
- [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174),
- [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602),
- [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35),
- [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439),
- [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307),
- [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376),
- [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412),
- [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
- [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172),
- [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59),
- [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
- [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303),
- [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155),
+ [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456),
+ [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
+ [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299),
+ [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
+ [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031),
+ [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579),
+ [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095),
+ [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352),
+ [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098),
+ [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545),
+ [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457),
+ [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358),
+ [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
+ [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
+ [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227),
+ [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474),
+ [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
+ [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385),
+ [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302),
+ [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329),
+ [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476),
+ [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
+ [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141),
+ [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57),
+ [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
+ [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148),
+ [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245),
[63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239),
- [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233),
- [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162),
- [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317),
- [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262),
- [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154),
- [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221),
- [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714),
- [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
- [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
- [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143),
- [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649),
- [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678),
- [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649),
- [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632),
- [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292),
- [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475),
- [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433),
- [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297),
- [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025),
- [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878),
- [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
- [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329),
- [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
- [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302),
- [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
- [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747),
- [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295),
- [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310),
- [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996),
- [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307),
- [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620),
- [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624),
- [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434),
- [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298),
- [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505),
- [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324),
- [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300),
- [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309),
- [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
- [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432),
- [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299),
- [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325),
- [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303),
- [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308),
- [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305),
- [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0),
- [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(462),
- [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(301),
- [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0),
- [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2),
- [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1048),
- [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1621),
- [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1107),
- [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(420),
- [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1118),
- [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1434),
- [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1590),
- [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1379),
- [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(96),
- [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(346),
- [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174),
- [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1602),
- [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(35),
- [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1439),
- [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1307),
- [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1376),
- [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1412),
- [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(111),
- [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(172),
- [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(59),
- [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(64),
- [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1303),
- [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155),
- [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239),
- [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1233),
- [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1162),
- [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(317),
- [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1262),
- [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(154),
- [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(221),
- [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1714),
- [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(221),
- [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(243),
- [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1143),
- [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(649),
- [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1678),
- [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(649),
- [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(632),
- [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1292),
- [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(475),
- [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0),
- [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0),
- [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 100),
- [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 100),
- [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59),
- [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59),
- [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38),
- [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38),
- [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0),
- [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
- [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0),
- [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584),
- [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585),
- [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
- [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510),
- [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513),
- [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940),
- [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946),
- [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
- [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
- [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335),
- [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
- [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478),
- [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304),
- [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
- [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458),
- [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401),
- [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460),
- [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312),
- [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461),
- [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196),
- [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316),
- [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274),
- [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479),
- [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440),
- [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441),
- [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186),
- [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840),
- [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0),
- [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338),
- [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
- [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211),
- [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0),
- [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
- [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
- [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357),
- [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195),
- [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241),
- [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242),
- [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213),
- [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311),
- [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275),
- [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
- [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183),
- [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706),
- [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
- [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
- [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120),
- [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531),
- [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643),
- [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531),
- [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610),
- [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455),
- [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461),
- [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
- [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836),
- [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377),
- [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169),
- [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323),
- [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260),
- [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473),
- [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480),
- [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251),
- [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271),
- [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60),
- [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320),
- [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160),
- [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272),
- [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704),
- [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
- [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
- [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716),
- [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716),
- [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501),
- [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500),
- [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277),
- [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832),
- [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294),
- [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
- [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
- [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425),
- [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171),
- [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274),
- [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708),
- [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
- [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
- [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723),
- [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847),
- [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492),
- [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493),
- [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227),
- [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245),
- [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62),
- [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352),
- [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128),
- [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224),
- [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
- [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
- [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684),
- [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509),
- [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0),
- [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0),
- [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0),
- [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0),
- [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0),
- [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
- [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458),
- [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474),
- [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
- [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616),
- [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319),
- [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635),
- [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 88),
- [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 88),
- [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88),
- [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88),
- [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378),
- [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92),
- [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92),
- [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 92),
- [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 92),
- [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380),
- [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 98),
- [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 98),
- [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 98),
- [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 98),
- [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
- [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0),
- [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0),
- [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 69),
- [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 69),
- [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0),
- [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0),
- [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
- [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
- [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0),
- [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0),
- [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574),
- [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37),
- [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37),
- [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37),
- [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37),
- [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410),
- [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611),
- [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731),
- [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 71),
- [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 71),
- [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 71),
- [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 71),
- [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
- [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759),
- [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 76),
- [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 76),
- [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 76),
- [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 76),
- [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
- [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 80),
- [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 80),
- [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 80),
- [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 80),
- [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
- [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814),
- [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 88),
- [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 88),
- [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 88),
- [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 88),
- [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377),
- [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428),
- [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355),
- [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356),
- [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488),
- [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489),
- [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843),
- [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112),
- [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427),
- [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113),
- [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
- [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332),
- [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758),
- [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0),
- [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464),
- [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460),
- [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842),
- [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
- [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
- [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259),
- [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326),
- [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
- [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729),
- [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129),
- [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490),
- [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494),
- [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844),
- [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
- [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344),
- [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780),
- [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0),
- [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522),
- [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
- [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
- [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
- [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612),
- [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0),
- [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741),
- [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014),
- [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510),
- [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168),
- [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173),
- [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
- [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
- [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
- [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499),
- [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497),
- [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134),
- [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444),
- [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135),
- [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412),
- [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845),
- [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
- [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
- [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
- [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
- [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
- [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
- [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
- [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
- [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729),
- [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
- [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443),
- [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442),
- [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312),
- [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476),
- [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465),
- [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666),
- [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328),
- [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627),
- [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468),
- [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467),
- [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318),
- [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498),
- [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502),
- [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358),
- [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472),
- [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469),
- [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327),
- [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686),
- [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482),
- [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481),
- [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330),
- [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756),
- [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329),
- [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
- [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094),
- [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1),
- [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623),
- [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107),
- [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118),
- [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4),
- [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1),
- [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(53),
- [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241),
- [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667),
- [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692),
- [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559),
- [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
- [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1),
- [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578),
- [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527),
- [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505),
- [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497),
- [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1027),
- [854] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(99),
- [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(242),
- [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249),
- [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250),
- [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227),
- [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488),
- [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988),
- [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
- [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209),
- [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
- [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
- [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676),
- [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980),
- [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993),
- [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720),
- [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718),
- [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(99),
- [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185),
- [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254),
- [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
- [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226),
- [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6),
- [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6),
- [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390),
- [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431),
- [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
- [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738),
- [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702),
- [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278),
- [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694),
- [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741),
- [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265),
- [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
- [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1),
- [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(185),
- [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250),
- [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163),
- [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893),
- [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
- [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647),
- [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661),
- [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1),
- [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(226),
- [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
- [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19),
- [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19),
- [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28),
- [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28),
- [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(129),
- [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129),
- [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
- [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 105),
- [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 105),
- [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 62),
- [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 62),
- [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
- [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
- [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0),
- [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0),
- [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0),
- [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0),
- [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6),
- [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6),
- [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24),
- [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24),
- [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30),
- [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29),
- [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29),
- [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727),
- [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726),
- [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
- [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54),
- [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54),
- [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0),
- [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0),
- [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0),
- [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0),
- [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, 54),
- [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54),
- [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0),
- [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0),
- [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 62),
- [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 62),
- [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 71),
- [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 71),
- [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0),
- [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0),
- [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0),
- [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0),
- [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 76),
- [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 76),
- [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 91),
- [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 91),
- [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0),
- [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0),
- [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 80),
- [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 80),
- [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 96),
- [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 96),
- [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 88),
- [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 88),
- [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 88),
- [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 88),
- [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3),
- [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3),
- [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 92),
- [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 92),
- [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54),
- [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54),
- [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13),
- [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13),
- [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14),
- [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14),
- [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102),
- [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102),
- [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103),
- [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103),
- [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0),
- [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0),
- [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 104),
- [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 104),
- [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20),
- [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20),
- [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 98),
- [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 98),
- [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109),
- [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109),
- [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 110),
- [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 110),
- [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111),
- [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111),
- [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 112),
- [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 112),
- [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0),
- [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0),
- [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23),
- [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23),
- [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 60),
- [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 60),
- [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0),
- [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0),
- [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20),
- [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20),
- [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21),
- [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21),
- [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0),
- [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0),
- [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23),
- [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23),
- [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25),
- [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25),
- [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 61),
- [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 61),
- [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0),
- [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0),
- [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0),
- [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0),
- [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6),
- [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6),
- [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 63),
- [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 63),
- [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37),
- [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37),
- [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52),
- [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52),
- [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 79),
- [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 79),
- [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26),
- [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26),
- [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27),
- [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27),
- [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55),
- [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55),
- [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30),
- [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30),
- [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30),
- [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30),
- [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0),
- [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0),
- [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0),
- [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0),
- [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276),
- [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109),
- [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 78),
- [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 78),
- [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0),
- [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0),
- [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228),
- [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0),
- [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 90),
- [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 90),
- [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4),
- [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246),
- [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
- [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48),
- [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48),
- [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47),
- [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47),
- [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45),
- [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45),
- [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46),
- [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46),
- [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
- [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
- [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339),
- [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(93),
- [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 95),
- [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 95),
- [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 107),
- [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 107),
- [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 108),
- [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 108),
- [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 101),
- [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 101),
- [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 94),
- [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 94),
- [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
- [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0),
- [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(187),
- [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0),
- [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(228),
- [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
- [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
- [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0),
- [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252),
- [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0),
- [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(130),
- [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
- [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
- [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
- [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278),
- [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
- [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8),
- [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8),
- [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
- [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
- [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636),
- [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178),
- [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9),
- [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9),
- [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343),
- [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518),
- [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9),
- [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9),
- [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568),
- [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0),
- [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0),
- [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0),
- [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0),
- [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0),
- [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0),
- [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0),
- [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0),
+ [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156),
+ [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322),
+ [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262),
+ [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143),
+ [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179),
+ [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698),
+ [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
+ [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
+ [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115),
+ [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677),
+ [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648),
+ [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677),
+ [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643),
+ [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339),
+ [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478),
+ [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432),
+ [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
+ [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026),
+ [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866),
+ [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505),
+ [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315),
+ [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
+ [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298),
+ [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
+ [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743),
+ [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357),
+ [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
+ [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988),
+ [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308),
+ [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434),
+ [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
+ [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
+ [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313),
+ [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301),
+ [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307),
+ [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303),
+ [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605),
+ [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604),
+ [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437),
+ [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138),
+ [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314),
+ [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300),
+ [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305),
+ [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304),
+ [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0),
+ [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(456),
+ [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(299),
+ [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0),
+ [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3),
+ [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1031),
+ [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1579),
+ [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1095),
+ [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(352),
+ [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1098),
+ [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1545),
+ [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1457),
+ [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1358),
+ [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(93),
+ [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(339),
+ [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(227),
+ [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1474),
+ [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(47),
+ [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1385),
+ [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1302),
+ [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1329),
+ [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1476),
+ [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(109),
+ [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(141),
+ [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(57),
+ [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(79),
+ [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1148),
+ [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1245),
+ [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239),
+ [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156),
+ [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322),
+ [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1262),
+ [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(143),
+ [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179),
+ [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1698),
+ [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179),
+ [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(181),
+ [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1115),
+ [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677),
+ [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1648),
+ [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677),
+ [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(643),
+ [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1339),
+ [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(478),
+ [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0),
+ [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0),
+ [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 98),
+ [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 98),
+ [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 57),
+ [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 57),
+ [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 36),
+ [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 36),
+ [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506),
+ [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0),
+ [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
+ [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
+ [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
+ [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
+ [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508),
+ [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0),
+ [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948),
+ [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953),
+ [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335),
+ [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
+ [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452),
+ [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302),
+ [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
+ [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426),
+ [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343),
+ [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428),
+ [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315),
+ [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431),
+ [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170),
+ [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317),
+ [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254),
+ [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453),
+ [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441),
+ [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439),
+ [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
+ [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826),
+ [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0),
+ [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337),
+ [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
+ [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222),
+ [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0),
+ [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56),
+ [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
+ [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164),
+ [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226),
+ [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227),
+ [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141),
+ [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309),
+ [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212),
+ [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
+ [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199),
+ [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635),
+ [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
+ [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
+ [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132),
+ [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523),
+ [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637),
+ [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523),
+ [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577),
+ [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449),
+ [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447),
+ [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
+ [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824),
+ [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340),
+ [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148),
+ [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158),
+ [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320),
+ [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201),
+ [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458),
+ [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460),
+ [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252),
+ [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273),
+ [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
+ [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318),
+ [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162),
+ [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274),
+ [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688),
+ [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
+ [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
+ [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700),
+ [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725),
+ [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490),
+ [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491),
+ [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297),
+ [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823),
+ [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247),
+ [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59),
+ [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
+ [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331),
+ [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131),
+ [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229),
+ [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
+ [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
+ [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641),
+ [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511),
+ [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500),
+ [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496),
+ [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279),
+ [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295),
+ [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60),
+ [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356),
+ [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172),
+ [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276),
+ [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692),
+ [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
+ [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
+ [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699),
+ [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820),
+ [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0),
+ [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0),
+ [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0),
+ [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0),
+ [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0),
+ [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0),
+ [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0),
+ [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
+ [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
+ [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
+ [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0),
+ [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0),
+ [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0),
+ [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0),
+ [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 67),
+ [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 67),
+ [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 96),
+ [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 96),
+ [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 96),
+ [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 96),
+ [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
+ [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 35),
+ [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 35),
+ [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 35),
+ [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 35),
+ [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413),
+ [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 74),
+ [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 74),
+ [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74),
+ [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74),
+ [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402),
+ [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 78),
+ [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 78),
+ [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 78),
+ [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 78),
+ [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
+ [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 69),
+ [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 69),
+ [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 69),
+ [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 69),
+ [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
+ [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86),
+ [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86),
+ [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 86),
+ [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 86),
+ [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
+ [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 86),
+ [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 86),
+ [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 86),
+ [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 86),
+ [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423),
+ [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90),
+ [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90),
+ [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 90),
+ [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 90),
+ [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424),
+ [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464),
+ [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455),
+ [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
+ [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525),
+ [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164),
+ [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316),
+ [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671),
+ [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606),
+ [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597),
+ [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667),
+ [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740),
+ [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759),
+ [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426),
+ [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332),
+ [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334),
+ [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480),
+ [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484),
+ [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828),
+ [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080),
+ [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410),
+ [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081),
+ [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
+ [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328),
+ [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744),
+ [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468),
+ [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466),
+ [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827),
+ [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
+ [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
+ [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216),
+ [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319),
+ [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
+ [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632),
+ [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0),
+ [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492),
+ [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488),
+ [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829),
+ [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
+ [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330),
+ [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816),
+ [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126),
+ [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490),
+ [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0),
+ [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
+ [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688),
+ [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
+ [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379),
+ [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544),
+ [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423),
+ [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976),
+ [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0),
+ [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163),
+ [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136),
+ [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421),
+ [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
+ [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494),
+ [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497),
+ [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113),
+ [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442),
+ [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103),
+ [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344),
+ [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830),
+ [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
+ [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
+ [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
+ [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
+ [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
+ [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
+ [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
+ [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
+ [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
+ [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
+ [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712),
+ [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363),
+ [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
+ [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076),
+ [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1),
+ [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533),
+ [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095),
+ [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098),
+ [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4),
+ [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1),
+ [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(31),
+ [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218),
+ [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674),
+ [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680),
+ [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608),
+ [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
+ [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1),
+ [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610),
+ [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440),
+ [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438),
+ [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310),
+ [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599),
+ [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471),
+ [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470),
+ [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677),
+ [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323),
+ [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612),
+ [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454),
+ [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451),
+ [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321),
+ [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495),
+ [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499),
+ [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357),
+ [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479),
+ [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482),
+ [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329),
+ [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735),
+ [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469),
+ [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467),
+ [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325),
+ [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645),
+ [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443),
+ [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440),
+ [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1008),
+ [847] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(97),
+ [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(220),
+ [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247),
+ [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224),
+ [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234),
+ [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412),
+ [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959),
+ [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
+ [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275),
+ [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
+ [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
+ [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631),
+ [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961),
+ [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982),
+ [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705),
+ [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696),
+ [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(97),
+ [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201),
+ [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230),
+ [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
+ [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231),
+ [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327),
+ [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191),
+ [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878),
+ [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
+ [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1),
+ [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(201),
+ [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632),
+ [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682),
+ [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267),
+ [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718),
+ [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716),
+ [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251),
+ [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259),
+ [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
+ [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710),
+ [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689),
+ [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1),
+ [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(231),
+ [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
+ [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6),
+ [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6),
+ [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278),
+ [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393),
+ [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19),
+ [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(130),
+ [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130),
+ [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19),
+ [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28),
+ [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28),
+ [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
+ [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
+ [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0),
+ [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0),
+ [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6),
+ [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6),
+ [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24),
+ [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24),
+ [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40),
+ [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103),
+ [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103),
+ [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703),
+ [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702),
+ [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278),
+ [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
+ [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 60),
+ [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 60),
+ [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386),
+ [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0),
+ [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0),
+ [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6),
+ [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6),
+ [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27),
+ [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27),
+ [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 100),
+ [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 100),
+ [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102),
+ [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102),
+ [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 52),
+ [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 52),
+ [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 96),
+ [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 96),
+ [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 107),
+ [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 107),
+ [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29),
+ [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29),
+ [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30),
+ [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30),
+ [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30),
+ [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30),
+ [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 108),
+ [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 108),
+ [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0),
+ [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0),
+ [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109),
+ [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109),
+ [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0),
+ [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0),
+ [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0),
+ [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0),
+ [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 61),
+ [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 61),
+ [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0),
+ [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0),
+ [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 110),
+ [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 110),
+ [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 50),
+ [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 50),
+ [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20),
+ [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20),
+ [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 52),
+ [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 52),
+ [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0),
+ [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0),
+ [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 53),
+ [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 53),
+ [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21),
+ [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21),
+ [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0),
+ [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0),
+ [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 60),
+ [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 60),
+ [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 69),
+ [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 69),
+ [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0),
+ [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0),
+ [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 77),
+ [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 77),
+ [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23),
+ [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23),
+ [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 52),
+ [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 52),
+ [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3),
+ [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3),
+ [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20),
+ [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20),
+ [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0),
+ [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0),
+ [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25),
+ [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25),
+ [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13),
+ [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13),
+ [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 74),
+ [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 74),
+ [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23),
+ [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23),
+ [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 58),
+ [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 58),
+ [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0),
+ [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0),
+ [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 89),
+ [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 89),
+ [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86),
+ [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86),
+ [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 78),
+ [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 78),
+ [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099),
+ [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0),
+ [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0),
+ [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0),
+ [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0),
+ [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 35),
+ [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 35),
+ [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14),
+ [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14),
+ [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0),
+ [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0),
+ [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26),
+ [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26),
+ [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0),
+ [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0),
+ [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0),
+ [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0),
+ [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 59),
+ [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 59),
+ [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0),
+ [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0),
+ [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 94),
+ [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 94),
+ [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 86),
+ [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 86),
+ [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 90),
+ [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 90),
+ [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 101),
+ [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 101),
+ [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 76),
+ [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 76),
+ [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 44),
+ [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 44),
+ [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45),
+ [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45),
+ [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0),
+ [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0),
+ [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232),
+ [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0),
+ [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 43),
+ [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 43),
+ [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4),
+ [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223),
+ [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
+ [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 88),
+ [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 88),
+ [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46),
+ [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46),
+ [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
+ [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
+ [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313),
+ [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(92),
+ [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105),
+ [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105),
+ [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 106),
+ [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 106),
+ [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
+ [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
+ [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253),
+ [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 99),
+ [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 99),
+ [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0),
+ [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203),
+ [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 92),
+ [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 92),
+ [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0),
+ [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232),
+ [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
+ [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0),
+ [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 93),
+ [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 93),
+ [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0),
+ [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(133),
+ [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
+ [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
+ [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
+ [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
+ [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 7),
+ [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 7),
+ [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
+ [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
+ [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541),
+ [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174),
+ [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570),
+ [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572),
+ [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8),
+ [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8),
+ [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349),
+ [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0),
+ [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0),
+ [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8),
+ [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8),
+ [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529),
+ [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0),
+ [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0),
+ [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 39),
+ [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 39),
+ [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563),
+ [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0),
+ [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0),
+ [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0),
+ [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0),
[1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6),
[1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6),
- [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 73),
- [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 73),
- [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16),
- [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16),
- [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 77),
- [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 77),
- [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0),
- [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0),
- [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0),
- [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0),
- [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0),
- [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17),
- [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17),
- [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18),
- [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18),
- [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0),
- [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0),
- [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0),
- [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0),
- [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 32),
- [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 32),
- [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81),
- [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81),
- [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0),
- [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0),
- [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10),
- [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10),
- [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0),
- [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0),
- [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 87),
- [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 87),
- [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0),
- [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0),
- [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17),
- [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17),
- [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 31),
- [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 31),
- [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32),
- [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32),
- [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38),
- [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38),
- [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64),
- [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64),
- [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39),
- [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39),
- [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40),
- [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40),
- [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41),
- [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41),
- [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522),
- [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0),
- [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0),
- [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43),
- [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43),
- [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0),
- [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0),
- [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72),
- [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72),
- [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 73),
- [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 73),
- [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0),
- [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0),
- [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49),
- [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49),
- [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53),
- [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53),
- [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11),
- [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11),
- [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 7),
- [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 7),
- [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50),
- [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50),
- [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 74),
- [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 74),
- [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75),
- [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75),
- [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0),
- [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0),
- [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0),
- [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0),
- [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 7),
- [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 7),
- [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51),
- [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51),
- [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0),
- [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0),
- [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189),
- [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0),
- [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188),
- [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
- [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
- [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
- [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
- [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
- [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
- [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196),
- [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197),
- [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
- [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
- [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
- [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199),
- [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
- [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
- [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
- [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15),
- [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602),
- [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583),
- [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0),
- [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42),
- [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44),
- [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44),
- [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44),
- [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
- [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
- [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487),
- [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180),
- [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 89),
- [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365),
- [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637),
- [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0),
- [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207),
- [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204),
- [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213),
- [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
- [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214),
- [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217),
- [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
- [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
- [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
- [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
- [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
- [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
- [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
- [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
- [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216),
- [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
- [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
- [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255),
- [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253),
- [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
- [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
- [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258),
- [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
- [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259),
- [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
- [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261),
- [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262),
- [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
- [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
- [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
- [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264),
- [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
- [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
- [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
- [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715),
- [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0),
- [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18),
- [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0),
- [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 15),
- [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56),
- [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0),
- [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0),
- [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
- [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361),
- [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59),
- [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(253),
- [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424),
- [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42),
- [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0),
- [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0),
- [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42),
- [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42),
- [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42),
- [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423),
- [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0),
- [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0),
- [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18),
- [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0),
- [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
- [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
- [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717),
- [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
- [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
- [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230),
- [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229),
- [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296),
- [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
- [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233),
- [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236),
- [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
- [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
- [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
- [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
- [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
- [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
- [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
- [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
- [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
- [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235),
- [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
- [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
- [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
- [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447),
- [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
- [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453),
- [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752),
- [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
- [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
- [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459),
- [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451),
- [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577),
- [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721),
- [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452),
- [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
- [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470),
- [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
- [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
- [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449),
- [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438),
- [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166),
- [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237),
- [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023),
- [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
- [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524),
- [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429),
- [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
- [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0),
- [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151),
- [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
- [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
- [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454),
- [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446),
- [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
- [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
- [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
- [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281),
- [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
- [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
- [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
- [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284),
- [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
- [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285),
- [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
- [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287),
- [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288),
- [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
- [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
- [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
- [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290),
- [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
- [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
- [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
- [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104),
- [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892),
- [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523),
- [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
- [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900),
- [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328),
- [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905),
- [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909),
- [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
- [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57),
- [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115),
- [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625),
- [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906),
- [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902),
- [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908),
- [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
- [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
- [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119),
- [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612),
- [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903),
- [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904),
- [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911),
- [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102),
- [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733),
- [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895),
- [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896),
- [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912),
- [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098),
- [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761),
- [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897),
- [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898),
- [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910),
- [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116),
- [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819),
- [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901),
- [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899),
- [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913),
- [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
- [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
- [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615),
- [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(280),
- [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0),
- [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240),
- [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
- [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
- [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
- [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177),
- [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0),
- [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914),
- [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916),
- [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924),
- [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251),
- [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035),
- [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
- [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882),
- [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
- [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348),
- [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276),
- [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277),
- [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925),
- [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136),
- [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907),
- [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010),
- [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961),
- [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
- [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883),
- [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1251),
- [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1035),
- [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70),
- [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(883),
- [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(267),
- [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1348),
- [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1276),
- [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1277),
- [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(925),
- [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1136),
- [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1292),
- [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(907),
- [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1010),
- [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(961),
- [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547),
- [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888),
- [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
- [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886),
- [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
- [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580),
- [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889),
- [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560),
- [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606),
- [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185),
- [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891),
- [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478),
- [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
- [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917),
- [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375),
- [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918),
- [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923),
- [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244),
- [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0),
- [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921),
- [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922),
- [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943),
- [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214),
- [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894),
- [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258),
- [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689),
- [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184),
- [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128),
- [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243),
- [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0),
- [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027),
- [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732),
- [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4),
- [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
- [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760),
- [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816),
- [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036),
- [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
- [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929),
- [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125),
- [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964),
- [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1482),
- [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18),
- [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984),
- [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030),
- [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191),
- [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985),
- [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494),
- [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981),
- [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004),
- [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005),
- [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006),
- [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601),
- [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044),
- [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535),
- [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019),
- [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020),
- [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040),
- [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518),
- [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016),
- [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989),
- [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17),
- [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492),
- [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012),
- [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037),
- [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920),
- [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133),
- [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927),
- [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013),
- [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965),
- [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966),
- [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042),
- [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919),
- [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127),
- [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933),
- [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934),
- [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039),
- [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516),
- [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015),
- [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99),
- [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99),
- [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536),
- [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537),
- [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0),
- [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0),
- [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
- [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713),
- [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972),
- [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 83),
- [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 83),
- [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 76),
- [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 76),
- [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 88),
- [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 88),
- [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977),
- [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 93),
- [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 93),
- [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58),
- [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58),
- [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 106),
- [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 106),
- [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 98),
- [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 98),
- [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520),
- [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521),
- [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6),
- [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6),
- [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35),
- [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35),
- [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(976),
- [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38),
- [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38),
- [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12),
- [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12),
- [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1292),
- [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34),
- [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34),
- [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35),
- [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35),
- [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45),
- [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45),
- [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038),
- [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567),
- [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995),
- [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029),
- [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987),
- [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427),
- [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002),
- [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003),
- [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026),
- [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462),
- [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001),
- [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024),
- [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
- [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046),
- [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408),
- [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999),
- [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000),
- [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045),
- [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539),
- [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021),
- [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022),
- [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041),
- [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448),
- [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997),
- [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998),
- [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
- [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533),
- [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2),
- [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2),
- [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401),
- [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573),
- [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578),
- [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422),
- [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423),
- [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593),
- [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450),
- [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454),
- [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031),
- [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982),
- [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436),
- [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008),
- [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009),
- [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437),
- [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438),
- [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10),
- [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10),
- [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463),
- [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464),
- [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983),
- [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
- [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043),
- [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986),
- [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519),
- [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017),
- [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018),
- [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530),
- [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532),
- [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540),
- [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541),
- [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547),
- [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548),
- [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550),
- [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551),
- [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594),
- [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592),
- [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
- [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428),
- [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404),
- [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457),
- [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
- [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
- [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
- [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517),
- [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531),
- [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571),
- [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534),
- [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538),
- [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546),
- [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549),
- [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421),
- [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
- [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580),
- [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641),
- [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093),
- [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0),
- [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650),
- [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117),
- [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
- [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619),
- [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209),
- [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117),
- [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640),
- [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158),
- [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546),
- [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
- [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057),
- [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198),
- [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175),
- [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056),
- [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176),
- [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058),
- [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187),
- [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197),
- [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062),
- [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164),
- [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055),
- [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742),
- [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(108),
- [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1062),
- [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1198),
- [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0),
- [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194),
- [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204),
- [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188),
- [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181),
- [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182),
- [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212),
- [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150),
- [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154),
- [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216),
- [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549),
- [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558),
- [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551),
- [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559),
- [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203),
- [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205),
- [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206),
- [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215),
- [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268),
- [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269),
- [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1117),
- [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(105),
- [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65),
- [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1117),
- [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656),
- [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659),
- [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660),
- [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628),
- [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340),
- [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660),
- [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674),
- [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345),
- [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740),
- [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321),
- [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(190),
- [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0),
- [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0),
- [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683),
- [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0),
- [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163),
- [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5),
- [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
- [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
- [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344),
- [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0),
- [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351),
- [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
- [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1490),
- [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18),
- [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0),
- [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103),
- [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109),
- [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649),
- [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4),
- [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4),
- [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084),
- [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140),
- [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532),
- [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
- [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707),
- [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
- [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
- [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45),
- [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45),
- [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1707),
- [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0),
- [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(126),
- [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
- [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66),
- [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0),
- [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0),
- [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085),
- [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85),
- [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68),
- [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266),
- [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
- [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339),
- [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36),
- [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697),
- [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149),
- [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734),
- [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555),
- [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
- [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139),
- [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722),
- [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0),
- [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0),
- [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1149),
- [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0),
- [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(133),
- [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0),
- [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0),
- [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225),
- [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887),
- [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
- [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011),
- [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152),
- [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 64),
- [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 64),
- [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060),
- [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211),
- [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067),
- [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(187),
- [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0),
- [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0),
- [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
- [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994),
- [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191),
- [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217),
- [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391),
- [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653),
- [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624),
- [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0),
- [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0),
- [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0),
- [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0),
- [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222),
- [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4),
- [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4),
- [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0),
- [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0),
- [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584),
- [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306),
- [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200),
- [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445),
- [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296),
- [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170),
- [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416),
- [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436),
- [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
- [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435),
- [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456),
- [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
- [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457),
- [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147),
- [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22),
- [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
- [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
- [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394),
- [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516),
- [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512),
- [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226),
- [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223),
- [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33),
- [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33),
- [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050),
- [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061),
- [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289),
- [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049),
- [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064),
- [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669),
- [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224),
- [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884),
- [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 32),
- [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 32),
- [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(228),
- [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0),
- [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0),
- [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248),
- [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230),
- [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054),
- [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065),
- [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881),
- [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
- [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
- [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111),
- [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101),
- [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402),
- [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
- [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623),
- [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363),
- [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0),
- [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1228),
- [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0),
- [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1229),
- [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1231),
- [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0),
- [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1231),
- [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1232),
- [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0),
- [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1232),
- [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622),
- [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256),
- [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885),
- [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
- [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470),
- [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208),
- [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0),
- [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
- [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255),
- [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564),
- [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246),
- [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247),
- [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18),
- [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517),
- [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228),
- [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229),
- [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144),
- [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252),
- [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253),
- [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146),
- [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608),
- [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380),
- [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614),
- [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656),
- [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501),
- [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337),
- [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189),
- [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607),
- [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356),
- [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(101),
- [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524),
- [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346),
- [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
- [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496),
- [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286),
- [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167),
- [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286),
- [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290),
- [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290),
- [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542),
- [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387),
- [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381),
- [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1101),
- [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0),
- [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475),
- [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362),
- [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620),
- [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326),
- [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202),
- [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287),
- [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288),
- [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502),
- [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366),
- [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409),
- [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399),
- [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(208),
- [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395),
- [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396),
- [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305),
- [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386),
- [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148),
- [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231),
- [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157),
- [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231),
- [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165),
- [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232),
- [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232),
- [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936),
- [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190),
- [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990),
- [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0),
- [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108),
- [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
- [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530),
- [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138),
- [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378),
- [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634),
- [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132),
- [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207),
- [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545),
- [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
- [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526),
- [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106),
- [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
- [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469),
- [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647),
- [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0),
- [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099),
- [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1141),
- [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0),
- [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643),
- [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0),
- [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105),
- [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298),
- [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654),
- [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610),
- [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096),
- [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
- [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199),
- [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20),
- [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(95),
- [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
- [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(891),
- [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0),
- [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(894),
- [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0),
- [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525),
- [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668),
- [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490),
- [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0),
- [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5),
- [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114),
- [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677),
- [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097),
- [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0),
- [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174),
- [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5),
- [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544),
- [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1130),
- [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0),
- [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374),
- [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968),
- [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0),
- [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0),
- [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(109),
- [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543),
- [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406),
- [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386),
- [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575),
- [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738),
- [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430),
- [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504),
- [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499),
- [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(1364),
- [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0),
- [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527),
- [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122),
- [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539),
- [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629),
- [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110),
- [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364),
- [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978),
- [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
- [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554),
- [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
- [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662),
- [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
- [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479),
- [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506),
- [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544),
- [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57),
- [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545),
- [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442),
- [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443),
- [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131),
- [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
- [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137),
- [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724),
- [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536),
- [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
- [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
- [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
- [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
- [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 82),
- [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
- [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0),
- [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67),
- [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
- [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466),
- [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
- [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
- [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
- [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976),
- [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
- [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426),
- [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142),
- [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
- [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
- [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0),
- [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0),
- [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84),
- [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0),
- [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86),
- [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890),
- [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389),
- [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421),
- [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422),
- [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
- [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
- [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561),
- [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705),
- [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483),
- [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698),
- [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
- [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
- [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270),
- [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0),
- [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375),
- [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374),
- [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 82),
- [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 97),
- [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0),
- [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145),
- [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145),
- [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437),
- [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439),
- [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123),
- [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659),
- [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0),
- [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
- [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
- [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0),
- [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648),
- [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
- [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725),
- [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
- [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727),
- [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234),
- [3369] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
- [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645),
- [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
- [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
- [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272),
- [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541),
- [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0),
- [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
- [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0),
- [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0),
- [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
- [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0),
- [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835),
- [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681),
- [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468),
- [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0),
- [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
- [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560),
- [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
- [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
- [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
- [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635),
- [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587),
- [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
- [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
- [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655),
- [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484),
- [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732),
- [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
- [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679),
- [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979),
- [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653),
- [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
- [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
- [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
- [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
- [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
- [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
- [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
- [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448),
- [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554),
- [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
- [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
- [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489),
- [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
- [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
+ [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0),
+ [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0),
+ [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9),
+ [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9),
+ [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10),
+ [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10),
+ [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 11),
+ [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 11),
+ [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16),
+ [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16),
+ [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17),
+ [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17),
+ [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18),
+ [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18),
+ [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0),
+ [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0),
+ [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0),
+ [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0),
+ [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0),
+ [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0),
+ [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31),
+ [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31),
+ [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 36),
+ [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 36),
+ [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 37),
+ [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 37),
+ [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 38),
+ [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 38),
+ [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0),
+ [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 41),
+ [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 41),
+ [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0),
+ [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0),
+ [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 47),
+ [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 47),
+ [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0),
+ [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0),
+ [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 48),
+ [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 48),
+ [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 49),
+ [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 49),
+ [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51),
+ [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51),
+ [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17),
+ [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17),
+ [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0),
+ [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0),
+ [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0),
+ [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0),
+ [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62),
+ [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62),
+ [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 70),
+ [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 70),
+ [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 71),
+ [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 71),
+ [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72),
+ [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72),
+ [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73),
+ [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73),
+ [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 71),
+ [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 71),
+ [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 75),
+ [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 75),
+ [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0),
+ [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0),
+ [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 31),
+ [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 31),
+ [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 79),
+ [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 79),
+ [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 85),
+ [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 85),
+ [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0),
+ [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0),
+ [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0),
+ [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0),
+ [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0),
+ [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0),
+ [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0),
+ [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0),
+ [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205),
+ [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 42),
+ [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204),
+ [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209),
+ [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
+ [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 42),
+ [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213),
+ [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
+ [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
+ [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
+ [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215),
+ [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
+ [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0),
+ [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
+ [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
+ [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210),
+ [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
+ [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212),
+ [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
+ [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
+ [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 42),
+ [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
+ [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
+ [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395),
+ [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197),
+ [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15),
+ [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0),
+ [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 40),
+ [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 87),
+ [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0),
+ [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322),
+ [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670),
+ [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185),
+ [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183),
+ [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
+ [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
+ [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189),
+ [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
+ [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190),
+ [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
+ [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192),
+ [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
+ [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
+ [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
+ [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
+ [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195),
+ [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
+ [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
+ [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
+ [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635),
+ [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0),
+ [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18),
+ [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0),
+ [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256),
+ [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254),
+ [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
+ [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
+ [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259),
+ [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
+ [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260),
+ [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
+ [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262),
+ [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263),
+ [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
+ [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
+ [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
+ [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265),
+ [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
+ [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
+ [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
+ [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 40),
+ [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54),
+ [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 57),
+ [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(254),
+ [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0),
+ [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), REDUCE(sym_assignment_expression, 3, 0, 40),
+ [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40),
+ [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 40),
+ [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0),
+ [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18),
+ [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0),
+ [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0),
+ [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0),
+ [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
+ [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381),
+ [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
+ [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
+ [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 15),
+ [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0),
+ [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0),
+ [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749),
+ [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
+ [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
+ [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459),
+ [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433),
+ [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636),
+ [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000),
+ [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
+ [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234),
+ [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233),
+ [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
+ [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
+ [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237),
+ [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
+ [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
+ [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
+ [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240),
+ [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241),
+ [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
+ [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
+ [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
+ [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243),
+ [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
+ [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
+ [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
+ [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
+ [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465),
+ [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474),
+ [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
+ [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536),
+ [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457),
+ [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564),
+ [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427),
+ [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198),
+ [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
+ [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435),
+ [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462),
+ [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
+ [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476),
+ [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
+ [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
+ [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0),
+ [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448),
+ [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
+ [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
+ [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
+ [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
+ [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
+ [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186),
+ [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
+ [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
+ [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
+ [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265),
+ [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
+ [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675),
+ [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473),
+ [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
+ [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
+ [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281),
+ [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
+ [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
+ [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285),
+ [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
+ [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286),
+ [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
+ [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288),
+ [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289),
+ [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
+ [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
+ [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
+ [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291),
+ [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
+ [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
+ [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
+ [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 55),
+ [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084),
+ [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877),
+ [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542),
+ [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
+ [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892),
+ [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290),
+ [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890),
+ [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898),
+ [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090),
+ [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613),
+ [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885),
+ [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887),
+ [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897),
+ [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383),
+ [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085),
+ [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601),
+ [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889),
+ [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888),
+ [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899),
+ [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101),
+ [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669),
+ [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891),
+ [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882),
+ [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893),
+ [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082),
+ [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742),
+ [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883),
+ [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884),
+ [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894),
+ [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083),
+ [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762),
+ [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881),
+ [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886),
+ [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896),
+ [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407),
+ [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406),
+ [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
+ [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0),
+ [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
+ [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
+ [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270),
+ [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
+ [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(281),
+ [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
+ [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559),
+ [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160),
+ [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0),
+ [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904),
+ [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900),
+ [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912),
+ [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176),
+ [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875),
+ [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549),
+ [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
+ [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901),
+ [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301),
+ [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902),
+ [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914),
+ [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240),
+ [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020),
+ [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
+ [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876),
+ [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
+ [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266),
+ [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200),
+ [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908),
+ [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130),
+ [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895),
+ [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980),
+ [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921),
+ [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
+ [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872),
+ [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
+ [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
+ [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538),
+ [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873),
+ [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238),
+ [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0),
+ [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905),
+ [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909),
+ [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922),
+ [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1240),
+ [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1020),
+ [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68),
+ [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(876),
+ [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(268),
+ [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1266),
+ [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1200),
+ [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(908),
+ [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1130),
+ [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1339),
+ [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(895),
+ [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(980),
+ [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(921),
+ [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190),
+ [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880),
+ [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215),
+ [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620),
+ [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151),
+ [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110),
+ [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
+ [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870),
+ [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202),
+ [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0),
+ [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008),
+ [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761),
+ [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4),
+ [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
+ [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668),
+ [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741),
+ [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027),
+ [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
+ [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906),
+ [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111),
+ [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916),
+ [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1477),
+ [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18),
+ [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561),
+ [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964),
+ [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025),
+ [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185),
+ [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965),
+ [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588),
+ [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966),
+ [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978),
+ [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979),
+ [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997),
+ [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17),
+ [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014),
+ [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484),
+ [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985),
+ [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017),
+ [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486),
+ [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986),
+ [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007),
+ [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458),
+ [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972),
+ [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010),
+ [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907),
+ [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114),
+ [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913),
+ [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984),
+ [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919),
+ [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918),
+ [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009),
+ [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504),
+ [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993),
+ [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994),
+ [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021),
+ [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911),
+ [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109),
+ [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920),
+ [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923),
+ [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0),
+ [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0),
+ [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
+ [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616),
+ [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489),
+ [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488),
+ [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505),
+ [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506),
+ [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 81),
+ [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 81),
+ [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 97),
+ [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 97),
+ [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 91),
+ [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 91),
+ [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 43),
+ [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 43),
+ [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 96),
+ [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 96),
+ [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 56),
+ [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 56),
+ [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104),
+ [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104),
+ [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12),
+ [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12),
+ [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1339),
+ [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957),
+ [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 74),
+ [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 74),
+ [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956),
+ [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86),
+ [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86),
+ [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33),
+ [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33),
+ [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), SHIFT_REPEAT(963),
+ [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
+ [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610),
+ [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016),
+ [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462),
+ [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998),
+ [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999),
+ [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030),
+ [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983),
+ [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6),
+ [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6),
+ [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33),
+ [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33),
+ [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
+ [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028),
+ [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578),
+ [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975),
+ [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973),
+ [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011),
+ [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970),
+ [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558),
+ [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977),
+ [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974),
+ [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012),
+ [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508),
+ [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995),
+ [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996),
+ [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 36),
+ [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 36),
+ [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013),
+ [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405),
+ [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991),
+ [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992),
+ [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605),
+ [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409),
+ [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585),
+ [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408),
+ [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024),
+ [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960),
+ [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410),
+ [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005),
+ [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987),
+ [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414),
+ [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967),
+ [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
+ [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571),
+ [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022),
+ [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968),
+ [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487),
+ [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989),
+ [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990),
+ [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499),
+ [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501),
+ [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467),
+ [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509),
+ [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614),
+ [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531),
+ [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532),
+ [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516),
+ [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517),
+ [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519),
+ [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520),
+ [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422),
+ [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553),
+ [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554),
+ [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 9),
+ [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 9),
+ [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465),
+ [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2),
+ [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2),
+ [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502),
+ [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515),
+ [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485),
+ [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463),
+ [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518),
+ [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530),
+ [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
+ [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552),
+ [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500),
+ [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
+ [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
+ [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503),
+ [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507),
+ [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
+ [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416),
+ [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380),
+ [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583),
+ [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
+ [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445),
+ [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676),
+ [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077),
+ [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0),
+ [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686),
+ [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
+ [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045),
+ [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137),
+ [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187),
+ [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035),
+ [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188),
+ [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094),
+ [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
+ [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540),
+ [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165),
+ [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094),
+ [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662),
+ [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676),
+ [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537),
+ [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032),
+ [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145),
+ [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041),
+ [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144),
+ [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173),
+ [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179),
+ [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038),
+ [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(105),
+ [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1045),
+ [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1137),
+ [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0),
+ [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139),
+ [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205),
+ [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209),
+ [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152),
+ [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662),
+ [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147),
+ [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189),
+ [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146),
+ [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660),
+ [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154),
+ [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149),
+ [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157),
+ [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150),
+ [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621),
+ [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620),
+ [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554),
+ [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555),
+ [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182),
+ [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553),
+ [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094),
+ [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(104),
+ [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63),
+ [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094),
+ [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180),
+ [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181),
+ [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183),
+ [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556),
+ [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300),
+ [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711),
+ [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293),
+ [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294),
+ [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646),
+ [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659),
+ [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206),
+ [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191),
+ [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092),
+ [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099),
+ [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0),
+ [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697),
+ [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0),
+ [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0),
+ [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331),
+ [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5),
+ [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
+ [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
+ [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0),
+ [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4),
+ [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4),
+ [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053),
+ [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327),
+ [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640),
+ [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
+ [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1383),
+ [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0),
+ [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18),
+ [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313),
+ [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685),
+ [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405),
+ [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
+ [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 43),
+ [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 43),
+ [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123),
+ [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683),
+ [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
+ [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376),
+ [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
+ [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 83),
+ [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 64),
+ [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251),
+ [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
+ [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66),
+ [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106),
+ [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641),
+ [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634),
+ [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0),
+ [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0),
+ [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056),
+ [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573),
+ [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1123),
+ [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0),
+ [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(163),
+ [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0),
+ [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0),
+ [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 34),
+ [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1685),
+ [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0),
+ [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(165),
+ [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122),
+ [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527),
+ [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654),
+ [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203),
+ [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0),
+ [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0),
+ [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042),
+ [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199),
+ [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047),
+ [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040),
+ [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050),
+ [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0),
+ [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0),
+ [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229),
+ [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874),
+ [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
+ [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981),
+ [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153),
+ [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0),
+ [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0),
+ [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314),
+ [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177),
+ [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415),
+ [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347),
+ [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724),
+ [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534),
+ [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034),
+ [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048),
+ [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118),
+ [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 62),
+ [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 62),
+ [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210),
+ [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871),
+ [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208),
+ [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241),
+ [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
+ [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217),
+ [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036),
+ [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052),
+ [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 31),
+ [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 31),
+ [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003),
+ [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185),
+ [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32),
+ [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32),
+ [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233),
+ [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246),
+ [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479),
+ [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429),
+ [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
+ [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436),
+ [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232),
+ [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228),
+ [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0),
+ [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0),
+ [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365),
+ [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546),
+ [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581),
+ [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305),
+ [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195),
+ [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390),
+ [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256),
+ [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4),
+ [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4),
+ [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0),
+ [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0),
+ [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22),
+ [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
+ [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
+ [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445),
+ [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
+ [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446),
+ [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0),
+ [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0),
+ [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167),
+ [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236),
+ [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466),
+ [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370),
+ [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18),
+ [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
+ [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129),
+ [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161),
+ [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213),
+ [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140),
+ [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213),
+ [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879),
+ [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
+ [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093),
+ [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218),
+ [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218),
+ [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377),
+ [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275),
+ [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263),
+ [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143),
+ [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263),
+ [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120),
+ [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244),
+ [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264),
+ [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264),
+ [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
+ [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684),
+ [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(102),
+ [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252),
+ [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400),
+ [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379),
+ [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112),
+ [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222),
+ [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616),
+ [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569),
+ [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249),
+ [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250),
+ [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548),
+ [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285),
+ [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1079),
+ [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0),
+ [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403),
+ [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433),
+ [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316),
+ [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196),
+ [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608),
+ [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225),
+ [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186),
+ [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
+ [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382),
+ [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0),
+ [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1244),
+ [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269),
+ [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214),
+ [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079),
+ [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
+ [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571),
+ [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
+ [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0),
+ [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1252),
+ [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169),
+ [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444),
+ [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348),
+ [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
+ [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492),
+ [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338),
+ [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393),
+ [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396),
+ [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395),
+ [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494),
+ [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274),
+ [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263),
+ [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0),
+ [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263),
+ [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264),
+ [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0),
+ [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264),
+ [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0),
+ [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235),
+ [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469),
+ [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351),
+ [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399),
+ [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287),
+ [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
+ [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542),
+ [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436),
+ [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595),
+ [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
+ [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
+ [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117),
+ [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0),
+ [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088),
+ [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 55),
+ [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659),
+ [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089),
+ [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418),
+ [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1107),
+ [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0),
+ [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(95),
+ [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644),
+ [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
+ [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397),
+ [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0),
+ [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0),
+ [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5),
+ [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096),
+ [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360),
+ [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406),
+ [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407),
+ [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0),
+ [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087),
+ [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715),
+ [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171),
+ [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5),
+ [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
+ [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453),
+ [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
+ [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155),
+ [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001),
+ [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(107),
+ [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619),
+ [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102),
+ [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383),
+ [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184),
+ [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
+ [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438),
+ [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374),
+ [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664),
+ [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097),
+ [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
+ [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100),
+ [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0),
+ [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461),
+ [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
+ [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1125),
+ [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0),
+ [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0),
+ [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121),
+ [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534),
+ [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626),
+ [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691),
+ [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513),
+ [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917),
+ [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639),
+ [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470),
+ [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550),
+ [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495),
+ [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127),
+ [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128),
+ [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551),
+ [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552),
+ [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116),
+ [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
+ [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473),
+ [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20),
+ [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0),
+ [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091),
+ [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133),
+ [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
+ [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(875),
+ [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0),
+ [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568),
+ [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(880),
+ [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0),
+ [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493),
+ [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
+ [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
+ [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0),
+ [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0),
+ [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
+ [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
+ [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574),
+ [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665),
+ [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475),
+ [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
+ [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389),
+ [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387),
+ [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963),
+ [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869),
+ [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
+ [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394),
+ [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392),
+ [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0),
+ [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
+ [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
+ [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
+ [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257),
+ [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0),
+ [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 82),
+ [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84),
+ [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 95),
+ [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
+ [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 65),
+ [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
+ [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104),
+ [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
+ [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 80),
+ [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
+ [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 80),
+ [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0),
+ [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
+ [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417),
+ [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124),
+ [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124),
+ [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
+ [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428),
+ [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382),
+ [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380),
+ [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0),
+ [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394),
+ [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629),
+ [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929),
+ [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483),
+ [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
+ [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
+ [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822),
+ [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
+ [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444),
+ [3296] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
+ [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472),
+ [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618),
+ [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575),
+ [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665),
+ [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
+ [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411),
+ [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714),
+ [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682),
+ [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0),
+ [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0),
+ [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
+ [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387),
+ [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0),
+ [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
+ [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0),
+ [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
+ [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105),
+ [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498),
+ [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
+ [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683),
+ [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
+ [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206),
+ [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667),
+ [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658),
+ [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389),
+ [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0),
+ [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258),
+ [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
+ [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630),
+ [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
+ [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535),
+ [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622),
+ [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
+ [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
+ [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0),
+ [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636),
+ [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
+ [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
+ [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
+ [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
+ [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
+ [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
+ [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
+ [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
+ [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
+ [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514),
+ [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0),
+ [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
+ [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
+ [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
};
enum ts_external_scanner_symbol_identifiers {
diff --git a/test/corpus/glimmer.txt b/test/corpus/glimmer.txt
deleted file mode 100644
index b203a662..00000000
--- a/test/corpus/glimmer.txt
+++ /dev/null
@@ -1,136 +0,0 @@
-============================================
-Simple
-============================================
-
-const Named =
- {{ (doubled foo) }}
-
-
-----
-
-(program
- (lexical_declaration
- (variable_declarator
- (identifier)
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag)))))
-
-
-============================================
-Empty
-============================================
-
-
-
-----
-
-(program
- (expression_statement
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag))))
-
-
-============================================
-Two Components
-============================================
-
-const WithSemi =
- {{ (doubled foo) }}
-;
-
-
-
-;
-
-----
-
-(program
- (lexical_declaration
- (variable_declarator
- (identifier)
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag))))
-
- (expression_statement
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag))))
-
-============================================
-Multiple Assignment
-============================================
-
-const Empty =
-
-const WithSemi =
-
- {{ (doubled foo) }}
-;
-
-
-
-
-;
-
-----
-
-(program
- (lexical_declaration
- (variable_declarator
- (identifier)
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag))))
-
- (lexical_declaration
- (variable_declarator
- (identifier)
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag))))
-
- (expression_statement
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag))))
-
-============================================
-Class Component
-============================================
-
-class InClass {
-
- {{this.whatever}}
-
-}
-
-----
-
-(program
- (class_declaration
- (identifier)
- (class_body
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag)))))
-
-============================================
-JS Regex Evasion
-============================================
-
-
- {{#if true}}
- {{/if}}
-
-
-----
-
-(program
- (expression_statement
- (glimmer_template
- (glimmer_opening_tag)
- (glimmer_closing_tag)
- )))